├── ragemp-raknet ├── src │ ├── handlers.rs │ ├── rage.rs │ ├── handlers │ │ └── hash │ │ │ ├── server.rs │ │ │ └── replacer.rs │ ├── raknet.rs │ └── handler.rs ├── RakNet │ ├── Source │ │ ├── PacketPool.h │ │ ├── SimpleTCPServer.h │ │ ├── CMakeLists.txt │ │ ├── EmptyHeader.h │ │ ├── TCPInterface.cpp │ │ ├── RakNet.vcxproj.user │ │ ├── PS4Includes.h │ │ ├── PS4Includes.cpp │ │ ├── XBox360Includes.h │ │ ├── VitaIncludes.h │ │ ├── RakAssert.h │ │ ├── RakNetDefinesOverrides.h │ │ ├── PS3Includes.h │ │ ├── RakSleep.h │ │ ├── Getche.h │ │ ├── Gets.h │ │ ├── Itoa.h │ │ ├── NativeFeatureIncludesOverrides.h │ │ ├── EpochTimeToString.h │ │ ├── WSAStartupSingleton.h │ │ ├── RakAlloca.h │ │ ├── FormatString.h │ │ ├── Base64Encoder.h │ │ └── DS_HuffmanEncodingTreeNode.h │ ├── DependentExtensions │ │ ├── WinRT │ │ │ └── WinRTSocketAdapter.cpp │ │ ├── miniupnpc-1.5 │ │ │ ├── VERSION │ │ │ ├── MANIFEST.in │ │ │ ├── msvc │ │ │ │ ├── miniupnpc.vcproj │ │ │ │ └── upnpc-static.vcproj │ │ │ ├── external-ip.sh │ │ │ ├── java │ │ │ │ └── testjava.sh │ │ │ ├── mingw32make.bat │ │ │ ├── declspec.h │ │ │ ├── minissdpc.h │ │ │ ├── minisoap.h │ │ │ ├── miniupnpcstrings.h.in │ │ │ ├── setupmingw32.py │ │ │ ├── setup.py │ │ │ ├── connecthostport.h │ │ │ └── upnperrors.h │ │ ├── miniupnpc-1.6.20120410 │ │ │ ├── VERSION │ │ │ ├── MANIFEST.in │ │ │ ├── msvc │ │ │ │ ├── miniupnpc.vcproj │ │ │ │ └── upnpc-static.vcproj │ │ │ ├── external-ip.sh │ │ │ ├── java │ │ │ │ └── testjava.sh │ │ │ ├── miniupnpcstrings.h.cmake │ │ │ ├── mingw32make.bat │ │ │ ├── declspec.h │ │ │ ├── minissdpc.h │ │ │ ├── minisoap.h │ │ │ ├── miniupnpcstrings.h │ │ │ ├── miniupnpcstrings.h.in │ │ │ ├── connecthostport.h │ │ │ ├── miniupnpctypes.h │ │ │ ├── upnperrors.h │ │ │ ├── receivedata.h │ │ │ ├── setup.py │ │ │ └── setupmingw32.py │ │ ├── openssl-1.0.0d │ │ │ ├── bin │ │ │ │ ├── PEM │ │ │ │ │ ├── ca-cert.srl │ │ │ │ │ ├── pca-cert.srl │ │ │ │ │ ├── server.srl │ │ │ │ │ ├── demoCA │ │ │ │ │ │ └── serial │ │ │ │ │ ├── dsap.pem │ │ │ │ │ ├── dsa512.pem │ │ │ │ │ ├── dh512.pem │ │ │ │ │ ├── testCA.pem │ │ │ │ │ ├── s512-req.pem │ │ │ │ │ ├── dsa1024.pem │ │ │ │ │ ├── dh1024.pem │ │ │ │ │ ├── s512-key.pem │ │ │ │ │ ├── dh2048.pem │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── req.pem │ │ │ │ │ ├── ca-req.pem │ │ │ │ │ ├── pca-req.pem │ │ │ │ │ └── s1024req.pem │ │ │ │ ├── aep.dll │ │ │ │ ├── capi.dll │ │ │ │ ├── chil.dll │ │ │ │ ├── gmp.dll │ │ │ │ ├── gost.dll │ │ │ │ ├── nuron.dll │ │ │ │ ├── ubsec.dll │ │ │ │ ├── 4758cca.dll │ │ │ │ ├── atalla.dll │ │ │ │ ├── bftest.exe │ │ │ │ ├── bntest.exe │ │ │ │ ├── cswift.dll │ │ │ │ ├── destest.exe │ │ │ │ ├── dhtest.exe │ │ │ │ ├── dsatest.exe │ │ │ │ ├── ectest.exe │ │ │ │ ├── exptest.exe │ │ │ │ ├── md4test.exe │ │ │ │ ├── md5test.exe │ │ │ │ ├── openssl.exe │ │ │ │ ├── padlock.dll │ │ │ │ ├── rc2test.exe │ │ │ │ ├── rc4test.exe │ │ │ │ ├── rmdtest.exe │ │ │ │ ├── sha256t.exe │ │ │ │ ├── sha512t.exe │ │ │ │ ├── shatest.exe │ │ │ │ ├── ssltest.exe │ │ │ │ ├── wp_test.exe │ │ │ │ ├── casttest.exe │ │ │ │ ├── ecdhtest.exe │ │ │ │ ├── ecdsatest.exe │ │ │ │ ├── enginetest.exe │ │ │ │ ├── evp_test.exe │ │ │ │ ├── hmactest.exe │ │ │ │ ├── ideatest.exe │ │ │ │ ├── libeay32.dll │ │ │ │ ├── mdc2test.exe │ │ │ │ ├── randtest.exe │ │ │ │ ├── rsa_test.exe │ │ │ │ ├── sha1test.exe │ │ │ │ ├── ssleay32.dll │ │ │ │ └── sureware.dll │ │ │ ├── changes.txt │ │ │ ├── exp │ │ │ │ ├── aep.exp │ │ │ │ ├── capi.exp │ │ │ │ ├── chil.exp │ │ │ │ ├── gmp.exp │ │ │ │ ├── gost.exp │ │ │ │ ├── nuron.exp │ │ │ │ ├── ubsec.exp │ │ │ │ ├── 4758cca.exp │ │ │ │ ├── atalla.exp │ │ │ │ ├── cswift.exp │ │ │ │ ├── padlock.exp │ │ │ │ ├── libeay32.exp │ │ │ │ ├── ssleay32.exp │ │ │ │ └── sureware.exp │ │ │ ├── lib │ │ │ │ ├── aep.lib │ │ │ │ ├── capi.lib │ │ │ │ ├── chil.lib │ │ │ │ ├── gmp.lib │ │ │ │ ├── gost.lib │ │ │ │ ├── nuron.lib │ │ │ │ ├── ubsec.lib │ │ │ │ ├── 4758cca.lib │ │ │ │ ├── atalla.lib │ │ │ │ ├── cswift.lib │ │ │ │ ├── padlock.lib │ │ │ │ ├── libeay32.lib │ │ │ │ ├── ssleay32.lib │ │ │ │ └── sureware.lib │ │ │ ├── libeay32.dll │ │ │ ├── libssl32.dll │ │ │ ├── ssleay32.dll │ │ │ ├── OpenSSLhelp.chm │ │ │ └── include │ │ │ │ └── openssl │ │ │ │ └── ebcdic.h │ │ ├── jansson-2.4 │ │ │ ├── test │ │ │ │ ├── suites │ │ │ │ │ ├── invalid │ │ │ │ │ │ ├── empty │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── null │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── apostrophe │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── brace-comma │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── bracket-comma │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── lone-open-brace │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── lone-open-bracket │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── object-no-colon │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── unicode-identifier │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── unterminated-key │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── bracket-one-comma │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── extra-comma-in-array │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── invalid-identifier │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── object-apostrophes │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── object-no-value │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.strip │ │ │ │ │ │ │ └── error.normal │ │ │ │ │ │ ├── real-truncated-at-e │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── unterminated-array │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── unterminated-empty-key │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── unterminated-string │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── ascii-unicode-identifier │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── garbage-at-the-end │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── null-byte-outside-string │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── nostrip │ │ │ │ │ │ ├── real-garbage-after-e │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── real-truncated-at-point │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── integer-starting-with-zero │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── invalid-negative-integer │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── invalid-negative-real │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── minus-sign-without-number │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── object-garbage-at-end │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── object-in-unterminated-array │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── object-unterminated-value │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.normal │ │ │ │ │ │ │ └── error.strip │ │ │ │ │ │ ├── unterminated-array-and-object │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error.strip │ │ │ │ │ │ │ └── error.normal │ │ │ │ │ │ ├── unterminated-object-and-array │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── garbage-after-newline │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── invalid-escape │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── real-negative-overflow │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── real-positive-overflow │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── negative-integer-starting-with-zero │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── null-byte-in-string │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── nostrip │ │ │ │ │ │ ├── tab-character-in-string │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── too-big-positive-integer │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── lone-second-surrogate │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── too-big-negative-integer │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── error │ │ │ │ │ │ ├── escaped-null-byte-in-string │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── truncated-unicode-surrogate │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── extra-comma-in-multiline-array │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ │ └── invalid-second-surrogate │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── input │ │ │ │ │ ├── valid │ │ │ │ │ │ ├── null │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── true │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── empty-array │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── empty-object │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── false │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── simple-int-0 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── simple-int-1 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── empty-string │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── output │ │ │ │ │ │ ├── negative-int │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── negative-one │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── output │ │ │ │ │ │ ├── negative-zero │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-capital-e │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-underflow │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── short-string │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── simple-int-123 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── empty-object-in-array │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-exponent │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── output │ │ │ │ │ │ ├── simple-object │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── output │ │ │ │ │ │ ├── simple-real │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-negative-exponent │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-positive-exponent │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── one-byte-utf-8 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-fraction-exponent │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── string-escapes │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── two-byte-utf-8 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-capital-e-negative-exponent │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── real-capital-e-positive-exponent │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── three-byte-utf-8 │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── utf-8-string │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── escaped-utf-control-char │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── simple-ascii-string │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── utf-surrogate-four-byte-encoding │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ │ └── complex-array │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── input │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── invalid-unicode │ │ │ │ │ │ ├── lone-invalid-utf-8 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-array │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── restricted-utf-8 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── truncated-utf-8 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-int │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── not-in-unicode-range │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── encoded-surrogate-half │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-escape │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-string │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── overlong-3-byte-encoding │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── overlong-4-byte-encoding │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── overlong-ascii-encoding │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-after-backslash │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-bigger-int │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-exponent │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-identifier │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── invalid-utf-8-in-real-after-e │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ ├── lone-utf-8-continuation-byte │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ │ └── run │ │ │ │ ├── bin │ │ │ │ │ └── Makefile.am │ │ │ │ └── Makefile.am │ │ │ ├── doc │ │ │ │ ├── changes.rst │ │ │ │ ├── README │ │ │ │ └── Makefile.am │ │ │ ├── jansson.pc.in │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ └── Makefile.am │ │ ├── speex-1.1.12 │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ └── speex │ │ │ │ │ ├── speex_config_types.h.in │ │ │ │ │ └── Makefile.am │ │ │ ├── NEWS │ │ │ ├── win32 │ │ │ │ ├── config.h │ │ │ │ ├── speexdec │ │ │ │ │ └── Makefile.am │ │ │ │ ├── speexenc │ │ │ │ │ └── Makefile.am │ │ │ │ ├── Makefile.am │ │ │ │ └── libspeex │ │ │ │ │ └── Makefile.am │ │ │ ├── CMakeLists.txt │ │ │ ├── doc │ │ │ │ └── Makefile.am │ │ │ ├── INSTALL │ │ │ ├── symbian │ │ │ │ └── Makefile.am │ │ │ ├── ti │ │ │ │ ├── speex_C55_test │ │ │ │ │ └── Makefile.am │ │ │ │ ├── speex_C64_test │ │ │ │ │ └── Makefile.am │ │ │ │ ├── speex_C54_test │ │ │ │ │ └── Makefile.am │ │ │ │ └── Makefile.am │ │ │ ├── speex.pc.in │ │ │ ├── AUTHORS │ │ │ ├── README │ │ │ ├── README.blackfin │ │ │ └── Makefile.am │ │ ├── jpeg-7 │ │ │ ├── libjpeg.map │ │ │ ├── testimg.bmp │ │ │ ├── testimg.jpg │ │ │ ├── testimg.ppm │ │ │ ├── jdosabcc.obj │ │ │ ├── jdosamsc.obj │ │ │ ├── makeadsw.vc6 │ │ │ ├── makecdep.vc6 │ │ │ ├── makecdsp.vc6 │ │ │ ├── makecmak.vc6 │ │ │ ├── makeddep.vc6 │ │ │ ├── makeddsp.vc6 │ │ │ ├── makedmak.vc6 │ │ │ ├── makejdep.vc6 │ │ │ ├── makejdsp.vc6 │ │ │ ├── makejdsw.vc6 │ │ │ ├── makejmak.vc6 │ │ │ ├── makerdep.vc6 │ │ │ ├── makerdsp.vc6 │ │ │ ├── makermak.vc6 │ │ │ ├── maketdep.vc6 │ │ │ ├── maketdsp.vc6 │ │ │ ├── maketmak.vc6 │ │ │ ├── makewdep.vc6 │ │ │ ├── makewdsp.vc6 │ │ │ ├── makewmak.vc6 │ │ │ ├── testimgp.jpg │ │ │ ├── testorig.jpg │ │ │ ├── testprog.jpg │ │ │ ├── makvms.opt │ │ │ ├── jversion.h │ │ │ ├── readme.dos │ │ │ └── makejsln.vc9 │ │ ├── Swig │ │ │ ├── DLL_Swig │ │ │ │ ├── PreBuild.bat │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── PostBuildDebug.bat │ │ │ │ └── PostBuildRelease.bat │ │ │ └── InternalSwigItems │ │ │ │ └── InternalSwigWindowsCSharpSample │ │ │ │ └── InternalSwigTestApp │ │ │ │ ├── CallBacksAndSubclasses │ │ │ │ ├── FileListTransferCB.cs │ │ │ │ ├── TestNetworkIDObjectSubClass.cs │ │ │ │ ├── UDPProxyClientResultHandlerCB.cs │ │ │ │ └── UDPProxyServerResultHandlerCB.cs │ │ │ │ └── SwigFiles │ │ │ │ ├── TMTopology.cs │ │ │ │ ├── JoinTeamType.cs │ │ │ │ ├── PluginReceiveResult.cs │ │ │ │ ├── MultilistType.cs │ │ │ │ ├── PacketPriority.cs │ │ │ │ ├── ReadyEventSystemStatus.cs │ │ │ │ ├── PublicKeyMode.cs │ │ │ │ ├── ConnectionState.cs │ │ │ │ └── UDPForwarderResult.cs │ │ ├── Ogre3DInterpDemo │ │ │ ├── OgreResources │ │ │ │ ├── UpgradeMesh.bat │ │ │ │ ├── OgreCore.zip │ │ │ │ ├── skybox.zip │ │ │ │ ├── KernelTexture.dds │ │ │ │ ├── PopcornKernel.max │ │ │ │ ├── PopcornPopped.max │ │ │ │ ├── PoppedTexture.dds │ │ │ │ ├── OgreMeshUpgrade.exe │ │ │ │ ├── PopcornKernel.mesh │ │ │ │ ├── PopcornPopped.mesh │ │ │ │ ├── SkyBox.material │ │ │ │ ├── PopcornKernel.material │ │ │ │ └── PopcornPopped.material │ │ │ ├── PluginsL.cfg │ │ │ ├── Plugins.cfg │ │ │ ├── PluginsDebugL.cfg │ │ │ ├── PluginsDebug.cfg │ │ │ ├── resources.cfg │ │ │ ├── RunnableState.cpp │ │ │ ├── AppTypes.h │ │ │ └── readme.txt │ │ ├── XML │ │ │ └── CMakeLists.txt │ │ ├── portaudio_v18_1 │ │ │ ├── CMakeLists.txt │ │ │ ├── pa_asio │ │ │ │ ├── pa_asio.pdf │ │ │ │ └── Callback_adaptation_.pdf │ │ │ ├── docs │ │ │ │ └── portaudio_icmc2001.pdf │ │ │ ├── pa_unix_oss │ │ │ │ └── low_latency_tip.txt │ │ │ ├── fixfile.bat │ │ │ ├── testcvs │ │ │ │ └── changeme.txt │ │ │ └── fixdir.bat │ │ ├── bzip2-1.0.6 │ │ │ ├── words1 │ │ │ ├── dlltest.dsp │ │ │ ├── libbz2.dsp │ │ │ ├── manual.html │ │ │ ├── manual.pdf │ │ │ ├── sample1.bz2 │ │ │ ├── sample1.ref │ │ │ ├── sample2.bz2 │ │ │ ├── sample2.ref │ │ │ ├── sample3.bz2 │ │ │ ├── words2 │ │ │ ├── entities.xml │ │ │ ├── words0 │ │ │ ├── libbz2.def │ │ │ └── bz-html.xsl │ │ ├── DXTCompressor │ │ │ ├── cg.dll │ │ │ ├── cgGL.dll │ │ │ ├── glew32.dll │ │ │ ├── glut32.dll │ │ │ └── External │ │ │ │ └── lib │ │ │ │ ├── cg.lib │ │ │ │ ├── cgGL.lib │ │ │ │ ├── cgD3D10.lib │ │ │ │ ├── cgD3D8.lib │ │ │ │ ├── cgD3D9.lib │ │ │ │ ├── glew32.lib │ │ │ │ ├── glut32.lib │ │ │ │ └── glutstatic.lib │ │ ├── IrrlichtDemo │ │ │ ├── icon.ico │ │ │ ├── Irrlicht.dll │ │ │ ├── Irrlicht.exp │ │ │ ├── Irrlicht.lib │ │ │ ├── irrKlang.dll │ │ │ ├── resscript.rc │ │ │ ├── IrrlichtMedia │ │ │ │ ├── ball.wav │ │ │ │ ├── impact.wav │ │ │ │ ├── portal1.bmp │ │ │ │ ├── portal2.bmp │ │ │ │ ├── portal3.bmp │ │ │ │ ├── portal4.bmp │ │ │ │ ├── portal5.bmp │ │ │ │ ├── portal6.bmp │ │ │ │ ├── portal7.bmp │ │ │ │ ├── smoke.bmp │ │ │ │ ├── sydney.bmp │ │ │ │ ├── sydney.md2 │ │ │ │ ├── fireball.bmp │ │ │ │ ├── irrlicht.dat │ │ │ │ ├── irrlicht2_bk.jpg │ │ │ │ ├── irrlicht2_dn.jpg │ │ │ │ ├── irrlicht2_ft.jpg │ │ │ │ ├── irrlicht2_lf.jpg │ │ │ │ ├── irrlicht2_rt.jpg │ │ │ │ ├── irrlicht2_up.jpg │ │ │ │ ├── map-20kdm2.pk3 │ │ │ │ ├── IrrlichtTheme.ogg │ │ │ │ ├── irrlichtlogo2.png │ │ │ │ ├── particlewhite.bmp │ │ │ │ └── fonthaettenschweiler.bmp │ │ │ ├── demo.layout │ │ │ ├── irrKlang-1.1.3 │ │ │ │ ├── irrKlang.exp │ │ │ │ └── irrKlang.lib │ │ │ └── resource.h │ │ ├── cat │ │ │ ├── lib │ │ │ │ └── cat │ │ │ │ │ ├── big_x64.lib │ │ │ │ │ ├── big_x64.o │ │ │ │ │ └── big_x64.obj │ │ │ └── math │ │ │ │ └── BigTwistedEdwards.hpp │ │ ├── THIRDPARTYLICENSES │ │ ├── SQLite3Plugin │ │ │ ├── Logger │ │ │ │ └── ClientOnly │ │ │ │ │ ├── Samples │ │ │ │ │ └── D3D9 │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── Tut03_Matrices.jpg │ │ │ │ │ │ ├── DXUT │ │ │ │ │ │ └── Optional │ │ │ │ │ │ │ └── directx.ico │ │ │ │ │ │ └── resource.h │ │ │ │ │ └── Optional │ │ │ │ │ ├── Ogre3D_DX9_BackbufferGrabber.cpp │ │ │ │ │ └── Ogre3D_DX9_BackbufferGrabber.h │ │ │ └── readme.txt │ │ ├── Autopatcher │ │ │ ├── ApplyPatch.h │ │ │ ├── CreatePatch.h │ │ │ └── CMakeLists.txt │ │ ├── Lobby2 │ │ │ ├── Steam │ │ │ │ └── Lobby2Client_Steam.cpp │ │ │ └── Rooms │ │ │ │ └── IntervalTimer.h │ │ ├── MySQLInterface │ │ │ └── CMakeLists.txt │ │ ├── RPC3 │ │ │ └── CMakeLists.txt │ │ └── PostgreSQLInterface │ │ │ └── CMakeLists.txt │ ├── Lib │ │ ├── DLL │ │ │ ├── DLL.APS │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── LibStatic │ │ │ └── readme.txt │ │ └── CMakeLists.txt │ └── wrappers.h └── Cargo.toml ├── ragemp-http ├── .gitignore └── Cargo.toml ├── Cargo.toml └── .gitignore /ragemp-raknet/src/handlers.rs: -------------------------------------------------------------------------------- 1 | pub mod hash; 2 | -------------------------------------------------------------------------------- /ragemp-http/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/PacketPool.h: -------------------------------------------------------------------------------- 1 | // REMOVEME -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/SimpleTCPServer.h: -------------------------------------------------------------------------------- 1 | // Eraseme -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/WinRT/WinRTSocketAdapter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/VERSION: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/VERSION: -------------------------------------------------------------------------------- 1 | 1.6 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/empty/input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/null/output: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/true/output: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null/input: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-array/output: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object/output: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/false/output: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/null/input: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-0/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-1/output: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/true/input: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ 3 | "ragemp-http", 4 | "ragemp-raknet", 5 | ] 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/apostrophe/input: -------------------------------------------------------------------------------- 1 | [' 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/brace-comma/input: -------------------------------------------------------------------------------- 1 | {, 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-array/input: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object/input: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-string/input: -------------------------------------------------------------------------------- 1 | [""] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-string/output: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/false/input: -------------------------------------------------------------------------------- 1 | [false] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-int/output: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-one/input: -------------------------------------------------------------------------------- 1 | [-1] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-one/output: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-zero/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e/output: -------------------------------------------------------------------------------- 1 | [1e22] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-underflow/output: -------------------------------------------------------------------------------- 1 | [0.0] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/short-string/output: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-0/input: -------------------------------------------------------------------------------- 1 | [0] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-1/input: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-123/output: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-comma/input: -------------------------------------------------------------------------------- 1 | [, 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-brace/input: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/input: -------------------------------------------------------------------------------- 1 | {"a" 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unicode-identifier/input: -------------------------------------------------------------------------------- 1 | å 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/input: -------------------------------------------------------------------------------- 1 | {"a 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object-in-array/output: -------------------------------------------------------------------------------- 1 | [{}] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-int/input: -------------------------------------------------------------------------------- 1 | [-123] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-zero/input: -------------------------------------------------------------------------------- 1 | [-0] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e/input: -------------------------------------------------------------------------------- 1 | [1E22] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-exponent/input: -------------------------------------------------------------------------------- 1 | [123e45] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/short-string/input: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-123/input: -------------------------------------------------------------------------------- 1 | [123] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-object/input: -------------------------------------------------------------------------------- 1 | {"a":[]} 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-object/output: -------------------------------------------------------------------------------- 1 | {"a": []} -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-real/output: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/input: -------------------------------------------------------------------------------- 1 | [1, 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-array/input: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-identifier/input: -------------------------------------------------------------------------------- 1 | [troo 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-apostrophes/input: -------------------------------------------------------------------------------- 1 | {'a' 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-value/input: -------------------------------------------------------------------------------- 1 | {"a": 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-e/input: -------------------------------------------------------------------------------- 1 | [1e] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/input: -------------------------------------------------------------------------------- 1 | ["a" 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-empty-key/input: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-string/input: -------------------------------------------------------------------------------- 1 | ["a 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object-in-array/input: -------------------------------------------------------------------------------- 1 | [{}] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-real/input: -------------------------------------------------------------------------------- 1 | [123.456789] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /ragemp-raknet/src/rage.rs: -------------------------------------------------------------------------------- 1 | pub const ID_RPC: i32 = 0xD2; 2 | pub const RPC_CLIENT_PACKAGES: u16 = 0x31; 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/input: -------------------------------------------------------------------------------- 1 | aå 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-at-the-end/input: -------------------------------------------------------------------------------- 1 | [1,2,3]foo 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-outside-string/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-garbage-after-e/input: -------------------------------------------------------------------------------- 1 | [1ea] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-point/input: -------------------------------------------------------------------------------- 1 | [1.] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/one-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | [", one-byte UTF-8"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-fraction-exponent/output: -------------------------------------------------------------------------------- 1 | [1.23456e80] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1e-2] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1e+2] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-underflow/input: -------------------------------------------------------------------------------- 1 | [123e-10000000] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/string-escapes/output: -------------------------------------------------------------------------------- 1 | ["\"\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/two-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ģ two-byte UTF-8"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_7.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/DLL_Swig/PreBuild.bat: -------------------------------------------------------------------------------- 1 | cd ../ 2 | Call MakeSwig.bat "../../Source" 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [012] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-integer/input: -------------------------------------------------------------------------------- 1 | [-123foo] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-real/input: -------------------------------------------------------------------------------- 1 | [-123.123foo] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/minus-sign-without-number/input: -------------------------------------------------------------------------------- 1 | [-foo] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-garbage-at-end/input: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-in-unterminated-array/input: -------------------------------------------------------------------------------- 1 | [{} 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-unterminated-value/input: -------------------------------------------------------------------------------- 1 | {"a":"a 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array-and-object/input: -------------------------------------------------------------------------------- 1 | [{ 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-object-and-array/input: -------------------------------------------------------------------------------- 1 | {[ 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-exponent/output: -------------------------------------------------------------------------------- 1 | [1.2299999999999999e47] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-fraction-exponent/input: -------------------------------------------------------------------------------- 1 | [123.456e78] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/string-escapes/input: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/three-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ࠡ three-byte UTF-8"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/EmptyHeader.h: -------------------------------------------------------------------------------- 1 | // This is here to remove Missing #include header? in the Unreal Engine 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/UpgradeMesh.bat: -------------------------------------------------------------------------------- 1 | OgreMeshUpgrade.exe -d3d -b -t %1 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-after-newline/input: -------------------------------------------------------------------------------- 1 | [1,2,3] 2 | foo 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-escape/input: -------------------------------------------------------------------------------- 1 | ["\a <-- invalid escape"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-negative-overflow/input: -------------------------------------------------------------------------------- 1 | [-123123e100000] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-positive-overflow/input: -------------------------------------------------------------------------------- 1 | [123123e100000] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/one-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u002c one-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1E-2] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1E+2] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/two-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0123 two-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-8-string/output: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] -------------------------------------------------------------------------------- /ragemp-raknet/src/handlers/hash/server.rs: -------------------------------------------------------------------------------- 1 | fn start() {} 2 | 3 | pub fn start_and_get_hash() -> u64 { 4 | 0 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | target 3 | x64 4 | Backup* 5 | [Dd]ebug/ 6 | [Rr]elease/ 7 | Cargo.lock 8 | .vscode 9 | .idea 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/apostrophe/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near ''' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/negative-integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [-012] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/three-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0821 three-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-8-string/input: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/XML/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | FILE(GLOB ALL_HEADER_SRCS *.h) 2 | FILE(GLOB ALL_CPP_SRCS *.cpp) 3 | 4 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected token near ',' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | invalid escape near '"\a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["null byte not allowed"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | '[' or '{' expected near 'null' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/tab-character-in-string/input: -------------------------------------------------------------------------------- 1 | [" <-- tab character"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/brace-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ',' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/empty/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | '[' or '{' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-identifier/error: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | invalid token near 'troo' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-garbage-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-positive-integer/error: -------------------------------------------------------------------------------- 1 | 1 31 31 2 | too big integer 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/escaped-utf-control-char/output: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-ascii-string/output: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/win32/config.h: -------------------------------------------------------------------------------- 1 | #define inline __inline 2 | #define restrict 3 | #include "misc.h" -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Lib/DLL/DLL.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/Lib/DLL/DLL.APS -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = api 2 | EXTRA_DIST = invalid invalid-unicode valid 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-array/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '0' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 8 8 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-real/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 40 40 2 | invalid Unicode '\uDFAA' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/minus-sign-without-number/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '-' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-apostrophes/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ''' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-garbage-at-end/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | '}' expected near '123' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-point/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1.' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-negative-integer/input: -------------------------------------------------------------------------------- 1 | [-123123123123123123123123123123] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-positive-integer/input: -------------------------------------------------------------------------------- 1 | [123123123123123123123123123123] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 2 2 | '[' or '{' expected near 'å' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/escaped-utf-control-char/input: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-ascii-string/input: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-surrogate-four-byte-encoding/output: -------------------------------------------------------------------------------- 1 | ["𝄞 surrogate, four-byte UTF-8"] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-invalid-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | '[' or '{' expected near 'a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/escaped-null-byte-in-string/error: -------------------------------------------------------------------------------- 1 | 1 33 33 2 | \u0000 is not allowed 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/escaped-null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["\u0000 (null byte not allowed)"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-after-newline/error: -------------------------------------------------------------------------------- 1 | 2 3 11 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-at-the-end/error: -------------------------------------------------------------------------------- 1 | 1 10 10 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-second-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDFAA (second surrogate on it's own)"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-outside-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/tab-character-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | control character 0x9 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 32 32 2 | too big negative integer 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/truncated-unicode-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 46 46 2 | invalid Unicode '\uDADA' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-string/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-array/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/restricted-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xfd near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/truncated-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-multiline-array/error: -------------------------------------------------------------------------------- 1 | 6 1 17 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-multiline-array/input: -------------------------------------------------------------------------------- 1 | [1, 2 | 2, 3 | 3, 4 | 4, 5 | 5, 6 | ] 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 62 62 2 | invalid Unicode '\uD888\u3210' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/negative-integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '-0' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-value/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 6 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-empty-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected newline near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-empty-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | premature end of input near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-string/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | project(portaudio) 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | project(speex) 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/TCPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/Source/TCPInterface.cpp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/wrappers.h: -------------------------------------------------------------------------------- 1 | #include "Source/RakPeerInterface.h" 2 | #include "Source/MessageIdentifiers.h" 3 | #include "Source/BitStream.h" 4 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-int/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '0' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/not-in-unicode-range/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf4 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-brace/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-brace/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-in-string/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | control character 0x0 near '"null byte ' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-in-unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-in-unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-unterminated-value/error.normal: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-unterminated-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 7 7 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/truncated-unicode-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDADA (first surrogate without the second)"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-object-and-array/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near '[' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-surrogate-four-byte-encoding/input: -------------------------------------------------------------------------------- 1 | ["\uD834\uDD1E surrogate, four-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/encoded-surrogate-half/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xed near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '"\u' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-3-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe0 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-4-byte-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xf0 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-ascii-encoding/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xc1 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-negative-overflow/error: -------------------------------------------------------------------------------- 1 | 1 15 15 2 | real number overflow near '-123123e100000' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-positive-overflow/error: -------------------------------------------------------------------------------- 1 | 1 14 14 2 | real number overflow near '123123e100000' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/src/raknet.rs: -------------------------------------------------------------------------------- 1 | pub mod bindings; 2 | pub mod bitstream; 3 | pub mod messages; 4 | pub mod packet_priority; 5 | pub mod rakpeer; 6 | pub mod types; 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-after-backslash/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '"\' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '123' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-exponent/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unable to decode byte 0xe5 near '1e1' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-identifier/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0xe5 near 'a' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unable to decode byte 0xe5 near '1e' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-utf-8-continuation-byte/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unable to decode byte 0x81 near '"' 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array-and-object/error.strip: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/doc/changes.rst: -------------------------------------------------------------------------------- 1 | ****************** 2 | Changes in Jansson 3 | ****************** 4 | 5 | .. include:: ../CHANGES 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-second-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uD888\u3210 (first surrogate and invalid second surrogate)"] 2 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array-and-object/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 3 2 | string or '}' expected near end of file 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/words1: -------------------------------------------------------------------------------- 1 | 2 | Doing 6 tests (3 compress, 3 uncompress) ... 3 | If there's a problem, things might stop at this point. 4 | 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Lib/DLL/readme.txt: -------------------------------------------------------------------------------- 1 | Project: DLL 2 | 3 | Description: Builds RakNet into a DLL under /lib 4 | 5 | Dependencies: None 6 | 7 | Related projects: None 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimg.ppm -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README 2 | include miniupnpcmodule.c 3 | include setup.py 4 | include *.h 5 | include libminiupnpc.a 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/cg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/cg.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/doc/README: -------------------------------------------------------------------------------- 1 | To build the documentation, invoke 2 | 3 | make html 4 | 5 | Then point your browser to _build/html/index.html. 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/complex-array/output: -------------------------------------------------------------------------------- 1 | [1, 2, 3, 4, "a", "b", "c", {"core": "dump", "foo": "bar"}, true, false, true, true, null, false] -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/jdosabcc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/jdosabcc.obj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/jdosamsc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/jdosamsc.obj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeadsw.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecdep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecdsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makecmak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeddep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makeddsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makedmak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejdsw.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejmak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makerdep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makerdsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makermak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketdep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketdsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/maketmak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewdep.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewdsp.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makewmak.vc6 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testimgp.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testorig.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jpeg-7/testprog.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README 2 | include miniupnpcmodule.c 3 | include setup.py 4 | include *.h 5 | include libminiupnpc.a 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | docdir=$(prefix)/share/doc/@PACKAGE@-@VERSION@ 2 | 3 | doc_DATA = manual.pdf 4 | 5 | EXTRA_DIST = $(doc_DATA) 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/cgGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/cgGL.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/icon.ico -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/dlltest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/dlltest.dsp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/libbz2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/libbz2.dsp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/manual.html -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/manual.pdf -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample1.bz2 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample1.ref -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample2.bz2 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample2.ref -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/sample3.bz2 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.o -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/cat/lib/cat/big_x64.obj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/glew32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/glut32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/Irrlicht.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/resscript.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/resscript.rc -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/aep.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/aep.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/capi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/capi.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/chil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/chil.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/gmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/gmp.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/gost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/gost.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/nuron.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/nuron.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ubsec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ubsec.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/changes.txt -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/aep.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/aep.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/capi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/capi.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/chil.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/chil.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/gmp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/gmp.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/gost.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/gost.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/nuron.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/nuron.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/ubsec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/ubsec.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/aep.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/aep.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/capi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/capi.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/chil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/chil.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/gmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/gmp.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/gost.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/gost.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/nuron.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/nuron.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/ubsec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/ubsec.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/libeay32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/libssl32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/libssl32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/ssleay32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/PluginsL.cfg: -------------------------------------------------------------------------------- 1 | # Defines plugins to load 2 | 3 | # Define plugin folder 4 | PluginFolder=./ 5 | 6 | # Define plugins 7 | Plugin=RenderSystem_GL.so 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/cat/math/BigTwistedEdwards.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/cat/math/BigTwistedEdwards.hpp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/complex-array/input: -------------------------------------------------------------------------------- 1 | [1,2,3,4, 2 | "a", "b", "c", 3 | {"foo": "bar", "core": "dump"}, 4 | true, false, true, true, null, false 5 | ] 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/OpenSSLhelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/OpenSSLhelp.chm -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/4758cca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/4758cca.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/atalla.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/atalla.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/bftest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/bftest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/bntest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/bntest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/cswift.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/cswift.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/destest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/destest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/dhtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/dhtest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/dsatest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/dsatest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ectest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ectest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/exptest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/exptest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/md4test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/md4test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/md5test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/md5test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/openssl.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/padlock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/padlock.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rc2test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rc2test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rc4test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rc4test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rmdtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rmdtest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha256t.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha256t.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha512t.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha512t.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/shatest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/shatest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ssltest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ssltest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/wp_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/wp_test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/4758cca.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/4758cca.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/atalla.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/atalla.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/cswift.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/cswift.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/padlock.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/padlock.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/4758cca.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/4758cca.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/atalla.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/atalla.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/cswift.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/cswift.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/padlock.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/padlock.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cg.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/THIRDPARTYLICENSES: -------------------------------------------------------------------------------- 1 | The software available in this directory is licensed by third parties under open source licenses. 2 | See individual source files for more information. -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-in-string/nostrip: -------------------------------------------------------------------------------- 1 | The embedded NULL byte breaks json_loads(), which is used instead of 2 | json_loadf() in the stripped tests. 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/casttest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/casttest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ecdhtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ecdhtest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ecdsatest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ecdsatest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/enginetest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/enginetest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/evp_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/evp_test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/hmactest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/hmactest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ideatest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ideatest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/libeay32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/mdc2test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/mdc2test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/randtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/randtest.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rsa_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/rsa_test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha1test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sha1test.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/ssleay32.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sureware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/sureware.dll -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/libeay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/libeay32.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/ssleay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/ssleay32.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/sureware.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/exp/sureware.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/libeay32.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/ssleay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/ssleay32.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/sureware.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/lib/sureware.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgGL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgGL.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/ball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/ball.wav -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/demo.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/Plugins.cfg: -------------------------------------------------------------------------------- 1 | # Defines plugins to load 2 | 3 | # Define plugin folder 4 | PluginFolder=./ 5 | 6 | # Define plugins 7 | Plugin=RenderSystem_Direct3D9.dll 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/PluginsDebugL.cfg: -------------------------------------------------------------------------------- 1 | # Defines plugins to load 2 | 3 | # Define plugin folder 4 | PluginFolder=./ 5 | 6 | # Define plugins 7 | Plugin=RenderSystem_GL_d.so 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-outside-string/nostrip: -------------------------------------------------------------------------------- 1 | The embedded NULL byte breaks json_loads(), which is used instead of 2 | json_loadf() in the stripped tests. 3 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/msvc/miniupnpc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/msvc/miniupnpc.vcproj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_asio/pa_asio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_asio/pa_asio.pdf -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D10.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D8.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/cgD3D9.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glew32.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glut32.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/impact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/impact.wav -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal1.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal2.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal3.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal4.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal5.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal6.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/portal7.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/smoke.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/smoke.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/sydney.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/sydney.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/sydney.md2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/sydney.md2 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/PluginsDebug.cfg: -------------------------------------------------------------------------------- 1 | # Defines plugins to load 2 | 3 | # Define plugin folder 4 | PluginFolder=./ 5 | 6 | # Define plugins 7 | Plugin=RenderSystem_Direct3D9_d.dll 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/msvc/upnpc-static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/msvc/upnpc-static.vcproj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/RakNet.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/fireball.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/fireball.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht.dat -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang-1.1.3/irrKlang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang-1.1.3/irrKlang.exp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang-1.1.3/irrKlang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/irrKlang-1.1.3/irrKlang.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glutstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/DXTCompressor/External/lib/glutstatic.lib -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_bk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_bk.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_dn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_dn.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_ft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_ft.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_lf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_lf.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_rt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_rt.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlicht2_up.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/map-20kdm2.pk3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/map-20kdm2.pk3 -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/OgreCore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/OgreCore.zip -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/skybox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/skybox.zip -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/docs/portaudio_icmc2001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/docs/portaudio_icmc2001.pdf -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/IrrlichtTheme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/IrrlichtTheme.ogg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlichtlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/irrlichtlogo2.png -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/particlewhite.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/particlewhite.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/external-ip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # $Id: external-ip.sh,v 1.1 2010/08/05 12:57:41 nanard Exp $ 3 | # (c) 2010 Reuben Hawkins 4 | upnpc -s | grep ExternalIPAddress | sed 's/[^0-9\.]//g' 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/msvc/miniupnpc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/msvc/miniupnpc.vcproj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/KernelTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/KernelTexture.dds -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornKernel.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornKernel.max -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornPopped.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornPopped.max -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PoppedTexture.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PoppedTexture.dds -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/msvc/upnpc-static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/msvc/upnpc-static.vcproj -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_asio/Callback_adaptation_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_asio/Callback_adaptation_.pdf -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_unix_oss/low_latency_tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/pa_unix_oss/low_latency_tip.txt -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/OgreMeshUpgrade.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/OgreMeshUpgrade.exe -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornKernel.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornKernel.mesh -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornPopped.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornPopped.mesh -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/java/testjava.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | JAVA=java 4 | JAVAC=javac 5 | 6 | $JAVAC -cp miniupnpc_Linux.jar JavaBridgeTest.java 7 | $JAVA -cp miniupnpc_Linux.jar:. JavaBridgeTest 12345 UDP 8 | 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/external-ip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # $Id: external-ip.sh,v 1.1 2010/08/05 12:57:41 nanard Exp $ 3 | # (c) 2010 Reuben Hawkins 4 | upnpc -s | grep ExternalIPAddress | sed 's/[^0-9\.]//g' 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/fonthaettenschweiler.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/IrrlichtMedia/fonthaettenschweiler.bmp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Lib/LibStatic/readme.txt: -------------------------------------------------------------------------------- 1 | Project: Lib Static 2 | 3 | Description: Builds RakNet to a static library 4 | 5 | Dependencies: None 6 | 7 | Related projects: None 8 | 9 | For help and support, please visit http://www.jenkinssoftware.com -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/readme.txt: -------------------------------------------------------------------------------- 1 | This is the DirectX Matrices sample included with DirectX9. 2 | 3 | I use it to copy the backbuffer to main memory, in order to send it to SQLiteClientLoggerPlugin -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/words2: -------------------------------------------------------------------------------- 1 | 2 | Checking test results. If any of the four "cmp"s which follow 3 | report any differences, something is wrong. If you can't easily 4 | figure out what, please let me know (jseward@bzip.org). 5 | 6 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/Tut03_Matrices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/Tut03_Matrices.jpg -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/restricted-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/restricted-utf-8/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/truncated-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/truncated-utf-8/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/bin/Makefile.am: -------------------------------------------------------------------------------- 1 | check_PROGRAMS = json_process 2 | 3 | AM_CPPFLAGS = -I$(top_srcdir)/src 4 | AM_CFLAGS = -Wall -Werror 5 | LDFLAGS = -static # for speed and Valgrind 6 | LDADD = $(top_builddir)/src/libjansson.la 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-invalid-utf-8/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-invalid-utf-8/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/encoded-surrogate-half/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/encoded-surrogate-half/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-array/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-array/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-int/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-int/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/not-in-unicode-range/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/not-in-unicode-range/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/DXUT/Optional/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/DXUT/Optional/directx.ico -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-escape/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-escape/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-string/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-string/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-3-byte-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-3-byte-encoding/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-4-byte-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-4-byte-encoding/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-ascii-encoding/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/overlong-ascii-encoding/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makvms.opt: -------------------------------------------------------------------------------- 1 | ! A pointer to the VAX/VMS C Run-Time Shareable Library. 2 | ! This file is needed by makefile.mms and makefile.vms, 3 | ! but only for the older VAX C compiler. DEC C does not need it. 4 | Sys$Library:VAXCRTL.EXE /Share 5 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/java/testjava.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | JAVA=java 4 | JAVAC=javac 5 | CP=$(for i in *.jar; do echo -n $i:; done). 6 | 7 | $JAVAC -cp $CP JavaBridgeTest.java || exit 1 8 | $JAVA -cp $CP JavaBridgeTest 12345 UDP || exit 1 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/miniupnpcstrings.h.cmake: -------------------------------------------------------------------------------- 1 | #ifndef __MINIUPNPCSTRINGS_H__ 2 | #define __MINIUPNPCSTRINGS_H__ 3 | 4 | #define OS_STRING "${CMAKE_SYSTEM_NAME}" 5 | #define MINIUPNPC_VERSION_STRING "${MINIUPNPC_VERSION}" 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-bigger-int/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-exponent/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-exponent/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-identifier/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-identifier/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/INSTALL: -------------------------------------------------------------------------------- 1 | Installing Speex is as easy as: 2 | 3 | % ./configure [--prefix=] 4 | % make 5 | % make install 6 | 7 | Note that if you are using the code from SVN, you will need to run "autogen.sh" 8 | instead of "configure". 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Autopatcher/ApplyPatch.h: -------------------------------------------------------------------------------- 1 | /// Apply \a patch to \a old. Will return the new file in \a _new which is allocated for you. 2 | bool ApplyPatch( char *old, unsigned int oldsize, char **_new, unsigned int *newsize, char *patch, unsigned int patchsize ); 3 | 4 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-after-backslash/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-after-backslash/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/invalid-utf-8-in-real-after-e/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-utf-8-continuation-byte/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pycckue-Bnepeg/ragemp-cheat/master/ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-utf-8-continuation-byte/input -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = bin suites 2 | EXTRA_DIST = scripts run-suites 3 | 4 | TESTS = run-suites 5 | TESTS_ENVIRONMENT = \ 6 | top_srcdir=$(top_srcdir) \ 7 | top_builddir=$(top_builddir) 8 | 9 | clean-local: 10 | rm -rf logs 11 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/fixfile.bat: -------------------------------------------------------------------------------- 1 | rem Use Astyle to fix style in a file 2 | fixlines -p %1% 3 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor %1% 4 | del %1%.orig 5 | @rem convert line terminators to Unix style LFs 6 | fixlines -u %1% 7 | del %1%.bak 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/testcvs/changeme.txt: -------------------------------------------------------------------------------- 1 | This is just a dopy little file used to test the CVS repository. 2 | Feel free to trash this file. 3 | Minor change. 4 | Another tweak. 5 | philburk tweak 6 | stephane test 7 | Phil changed this again on 2/21/02. Yawn... 8 | 9 | -------------------------------------------------------------------------------- /ragemp-http/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ragemp-http" 3 | version = "0.1.0" 4 | authors = ["ZOTTCE "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | rocket = "0.4.5" 9 | reqwest = { version = "0.10.8", features = ["blocking"] } 10 | bytes = "0.6.0" 11 | twox-hash = "1.6.0" 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/mingw32make.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make -f Makefile.mingw %1 2 | @if errorlevel 1 goto end 3 | @if not exist upnpc-static.exe goto end 4 | @strip upnpc-static.exe 5 | @upx --best upnpc-static.exe 6 | @strip upnpc-shared.exe 7 | @upx --best upnpc-shared.exe 8 | :end 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/PS4Includes.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/resources.cfg: -------------------------------------------------------------------------------- 1 | # Resource locations to be added to the 'boostrap' path 2 | [Bootstrap] 3 | Zip=./OgreResources/OgreCore.zip 4 | Zip=./OgreResources/skybox.zip 5 | 6 | # Resource locations to be added to the default path 7 | [General] 8 | FileSystem=./OgreResources -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/mingw32make.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make -f Makefile.mingw %1 2 | @if errorlevel 1 goto end 3 | @if not exist upnpc-static.exe goto end 4 | @strip upnpc-static.exe 5 | @upx --best upnpc-static.exe 6 | @strip upnpc-shared.exe 7 | @upx --best upnpc-shared.exe 8 | :end 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Autopatcher/CreatePatch.h: -------------------------------------------------------------------------------- 1 | /// Given \a old and \a new , return \a out which will contain a patch to get from \a old to \a new . \a out is allocated for you. 2 | bool CreatePatch(const char *old, unsigned oldsize, char *_new, unsigned int newsize, char **out, unsigned *outSize); 3 | 4 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/symbian/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = bld.inf config.h speex.mmp 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/win32/speexdec/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = speexdec.dsp speexdec.dsw 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/win32/speexenc/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = speexenc.dsp speexenc.dsw 7 | -------------------------------------------------------------------------------- /ragemp-raknet/src/handlers/hash/replacer.rs: -------------------------------------------------------------------------------- 1 | pub struct Replacer { 2 | origin_host: String, 3 | } 4 | 5 | impl Replacer { 6 | pub fn new(origin_host: String) -> Replacer { 7 | Replacer { origin_host } 8 | } 9 | 10 | pub fn origin_host(&self) -> &str { 11 | &self.origin_host 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ragemp-raknet/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ragemp-raknet" 3 | version = "0.1.0" 4 | authors = ["ZOTTCE "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | rocket = "0.4.2" 9 | reqwest = "0.9.15" 10 | bytes = "0.4.12" 11 | twox-hash = "1.2.0" 12 | 13 | [build-dependencies] 14 | cmake = "0.1.38" 15 | bindgen = "0.49" 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/entities.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/ti/speex_C55_test/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = speex_C55_test.cmd speex_C55_test.pjt 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/ti/speex_C64_test/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = speex_C64_test.cmd speex_C64_test.pjt 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/RunnableState.cpp: -------------------------------------------------------------------------------- 1 | #include "RunnableState.h" 2 | 3 | 4 | 5 | void RunnableState::SetParentApp(AppInterface *parent) 6 | { 7 | this->parent=parent; 8 | } 9 | void RunnableState::SetFocus(bool hasFocus) 10 | { 11 | 12 | } 13 | void RunnableState::OnStateReady(void) 14 | { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/jansson.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=${prefix}/include 5 | 6 | Name: Jansson 7 | Description: Library for encoding, decoding and manipulating JSON data 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -ljansson 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/ti/speex_C54_test/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = speex_C54_test.cmd speex_C54_test.pjt 7 | 8 | 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/win32/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | SUBDIRS = libspeex speexenc speexdec 7 | 8 | EXTRA_DIST = speex.iss config.h 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/win32/libspeex/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | EXTRA_DIST = libspeex.dsp libspeex.dsw libspeex_dynamic.dsp speex.def 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/SkyBox.material: -------------------------------------------------------------------------------- 1 | material Examples/SteveCubeSkyBox 2 | { 3 | technique 4 | { 5 | pass 6 | { 7 | lighting off 8 | depth_write off 9 | 10 | texture_unit 11 | { 12 | cubic_texture stevecube.jpg separateUV 13 | tex_address_mode clamp 14 | } 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dsap.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIGcAkEA+ZiKEvZmc9MtnaFZh4NiZ3oZS4J1PHvPrm9MXj5ntVheDPkdmBDTncya 3 | GAJcMjwsyB/GvLDGd6yGCw/8eF+09wIVAK3VagOxGd/Q4Af5NbxR5FB7CXEjAkA2 4 | t/q7HgVLi0KeKvcDG8BRl3wuy7bCvpjgtWiJc/tpvcuzeuAayH89UofjAGueKjXD 5 | ADiRffvSdhrNw5dkqdql 6 | -----END DSA PARAMETERS----- 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dsa512.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIGdAkEAnRtpjibb8isRcBmG9hnI+BnyGFOURgbQYlAzSwI8UjADizv5X9EkBk97 3 | TLqqQJv9luQ3M7stWtdaEUBmonZ9MQIVAPtT71C0QJIxVoZTeuiLIppJ+3GPAkEA 4 | gz6I5cWJc847bAFJv7PHnwrqRJHlMKrZvltftxDXibeOdPvPKR7rqCxUUbgQ3qDO 5 | L8wka5B33qJoplISogOdIA== 6 | -----END DSA PARAMETERS----- 7 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/PS4Includes.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/DLL_Swig/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Swig is required for this solution, see the online swig tutorial on instructions on installing it. 2 | 3 | For this solution the path variable needs to be set for swig. 4 | 5 | Before the project is ran, Swig is run to generate the CXX file. 6 | 7 | After the project is ran the dll is copied to the C# sample. 8 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/include/speex/speex_config_types.h.in: -------------------------------------------------------------------------------- 1 | #ifndef __SPEEX_TYPES_H__ 2 | #define __SPEEX_TYPES_H__ 3 | 4 | /* these are filled in by configure */ 5 | typedef @SIZE16@ spx_int16_t; 6 | typedef unsigned @SIZE16@ spx_uint16_t; 7 | typedef @SIZE32@ spx_int32_t; 8 | typedef unsigned @SIZE32@ spx_uint32_t; 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/XBox360Includes.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/VitaIncludes.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = CHANGES LICENSE README.rst win32 2 | SUBDIRS = doc src test 3 | 4 | # "make distcheck" builds the dvi target, so use it to check that the 5 | # documentation is built correctly. 6 | dvi: 7 | $(MAKE) SPHINXOPTS_EXTRA=-W html 8 | 9 | pkgconfigdir = $(libdir)/pkgconfig 10 | pkgconfig_DATA = jansson.pc 11 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/declspec.h: -------------------------------------------------------------------------------- 1 | #ifndef __DECLSPEC_H__ 2 | #define __DECLSPEC_H__ 3 | 4 | #if defined(_WIN32) && !defined(STATICLIB) 5 | #ifdef MINIUPNP_EXPORTS 6 | #define LIBSPEC __declspec(dllexport) 7 | #else 8 | #define LIBSPEC __declspec(dllimport) 9 | #endif 10 | #else 11 | #define LIBSPEC 12 | #endif 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/speex.pc.in: -------------------------------------------------------------------------------- 1 | # libspeex pkg-config source file 2 | 3 | prefix=@prefix@ 4 | exec_prefix=@exec_prefix@ 5 | libdir=@libdir@ 6 | includedir=@includedir@ 7 | 8 | Name: speex 9 | Description: Speex is an audio codec tuned for speech 10 | Version: @SPEEX_VERSION@ 11 | Requires: 12 | Conflicts: 13 | Libs: -L${libdir} -lspeex 14 | Cflags: -I${includedir} 15 | -------------------------------------------------------------------------------- /ragemp-raknet/src/handler.rs: -------------------------------------------------------------------------------- 1 | use crate::raknet::bitstream::BitStream; 2 | 3 | pub trait Handler { 4 | fn handle_incoming(&mut self, packet_id: i32, bs: &mut BitStream) -> Option; 5 | fn handle_outcoming(&mut self, packet_id: i32, bs: &mut BitStream) -> Option; 6 | } 7 | 8 | pub enum Response { 9 | Change(BitStream<'static>), 10 | Forward, 11 | Break, 12 | } 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornKernel.material: -------------------------------------------------------------------------------- 1 | 2 | material PopcornKernelMaterial 3 | { 4 | technique 5 | { 6 | pass 7 | { 8 | ambient 0 0 0 1 9 | specular 0 0 0 1 10 10 | alpha_rejection greater 128 11 | 12 | texture_unit 13 | { 14 | texture_alias 0 15 | texture KernelTexture.dds 16 | } 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/PopcornPopped.material: -------------------------------------------------------------------------------- 1 | 2 | material PopcornPoppedMaterial 3 | { 4 | technique 5 | { 6 | pass 7 | { 8 | ambient 0 0 0 1 9 | specular 0 0 0 1 10 10 | alpha_rejection greater 128 11 | 12 | texture_unit 13 | { 14 | texture_alias 0 15 | texture PoppedTexture.dds 16 | } 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/ti/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # Disable automatic dependency tracking if using other tools than gcc and gmake 4 | #AUTOMAKE_OPTIONS = no-dependencies 5 | 6 | SUBDIRS = speex_C54_test speex_C55_test speex_C64_test 7 | 8 | EXTRA_DIST = config.h testenc-TI-C5x.c user_misc.h testenc-TI-C64x.c 9 | 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/CallBacksAndSubclasses/FileListTransferCB.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using RakNet; 6 | 7 | namespace InternalSwigTestApp 8 | { 9 | public class FileListTransferCB : FileListTransferCBInterface 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/CallBacksAndSubclasses/TestNetworkIDObjectSubClass.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using RakNet; 6 | 7 | namespace InternalSwigTestApp 8 | { 9 | public class TestNetworkIDObjectSubClass : NetworkIDObject 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/CallBacksAndSubclasses/UDPProxyClientResultHandlerCB.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using RakNet; 6 | 7 | namespace InternalSwigTestApp 8 | { 9 | public class UDPProxyClientResultHandlerCB : UDPProxyClientResultHandler 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/CallBacksAndSubclasses/UDPProxyServerResultHandlerCB.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using RakNet; 6 | 7 | namespace InternalSwigTestApp 8 | { 9 | public class UDPProxyServerResultHandlerCB : UDPProxyServerResultHandler 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | 3 | set( RAKNET_INTERNAL_INCLUDE_DIRS 4 | ${RakNet_SOURCE_DIR}/Source 5 | ${RakNet_SOURCE_DIR}/DependentExtensions/openssl-1.0.0d/include 6 | ${RakNet_SOURCE_DIR}/DependentExtensions 7 | ) 8 | 9 | if( RAKNET_ENABLE_STATIC ) 10 | add_subdirectory(LibStatic) 11 | endif() 12 | 13 | 14 | if( RAKNET_ENABLE_DLL ) 15 | add_subdirectory(DLL) 16 | endif() 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/RakAssert.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #include 12 | #include "RakNetDefines.h" 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Optional/Ogre3D_DX9_BackbufferGrabber.cpp: -------------------------------------------------------------------------------- 1 | #include "Ogre3D_DX9_BackbufferGrabber.h" 2 | 3 | void Ogre3D_DX9_BackbufferGrabber::InitBackbufferGrabber(Ogre::RenderWindow* renderWindow, int _width, int _height) 4 | { 5 | LPDIRECT3DDEVICE9 DX9Device; 6 | renderWindow->getCustomAttribute("D3DDEVICE", &DX9Device); 7 | DX9_BackbufferGrabber::InitBackbufferGrabber(DX9Device, _width, _height); 8 | } 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/RakNetDefinesOverrides.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | // USER EDITABLE FILE 12 | 13 | #define __BITSTREAM_NATIVE_END -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Lobby2/Steam/Lobby2Client_Steam.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | // Code is in Lobby2Client_Steam_Impl.cpp -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/words0: -------------------------------------------------------------------------------- 1 | 2 | If compilation produces errors, or a large number of warnings, 3 | please read README.COMPILATION.PROBLEMS -- you might be able to 4 | adjust the flags in this Makefile to improve matters. 5 | 6 | Also in README.COMPILATION.PROBLEMS are some hints that may help 7 | if your build produces an executable which is unable to correctly 8 | handle so-called 'large files' -- files of size 2GB or more. 9 | 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Lib/DLL/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by DLL.rc 4 | 5 | // Next default values for new objects 6 | // 7 | #ifdef APSTUDIO_INVOKED 8 | #ifndef APSTUDIO_READONLY_SYMBOLS 9 | #define _APS_NEXT_RESOURCE_VALUE 101 10 | #define _APS_NEXT_COMMAND_VALUE 40001 11 | #define _APS_NEXT_CONTROL_VALUE 1001 12 | #define _APS_NEXT_SYMED_VALUE 101 13 | #endif 14 | #endif 15 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/PS3Includes.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Optional/Ogre3D_DX9_BackbufferGrabber.h: -------------------------------------------------------------------------------- 1 | #ifndef OGRE3D_DX9_BACKBUFFER_GRABBER_H 2 | #define OGRE3D_DX9_BACKBUFFER_GRABBER_H 3 | 4 | #include "DX9_BackbufferGrabber.h" 5 | #include "OgreRenderWindow.h" 6 | 7 | class Ogre3D_DX9_BackbufferGrabber : public DX9_BackbufferGrabber 8 | { 9 | public: 10 | void InitBackbufferGrabber(Ogre::RenderWindow* renderWindow, int _width, int _height); 11 | }; 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/declspec.h: -------------------------------------------------------------------------------- 1 | #ifndef __DECLSPEC_H__ 2 | #define __DECLSPEC_H__ 3 | 4 | // KevinJ: Use RakNet's more sophisticated export 5 | #include "Export.h" 6 | #define LIBSPEC RAK_DLL_EXPORT 7 | /* 8 | #if defined(WIN32) && !defined(STATICLIB) 9 | #ifdef MINIUPNP_EXPORTS 10 | #define LIBSPEC __declspec(dllexport) 11 | #else 12 | #define LIBSPEC __declspec(dllimport) 13 | #endif 14 | #else 15 | #define LIBSPEC 16 | #endif 17 | */ 18 | 19 | #endif 20 | 21 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dh512.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MEYCQQD1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zafq9AKUJsCRtMIPWak 3 | XUGfnHy9iUsiGSa6q6Jew1XpKgVfAgEC 4 | -----END DH PARAMETERS----- 5 | 6 | These are the 512 bit DH parameters from "Assigned Number for SKIP Protocols" 7 | (http://www.skip-vpn.org/spec/numbers.html). 8 | See there for how they were generated. 9 | Note that g is not a generator, but this is not a problem since p is a safe prime. 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/include/speex/Makefile.am: -------------------------------------------------------------------------------- 1 | # Disable automatic dependency tracking if using other tools than gcc and gmake 2 | #AUTOMAKE_OPTIONS = no-dependencies 3 | 4 | nodist_pkginclude_HEADERS = speex_config_types.h 5 | 6 | pkginclude_HEADERS = speex.h \ 7 | speex_types.h \ 8 | speex_bits.h \ 9 | speex_header.h \ 10 | speex_callbacks.h \ 11 | speex_stereo.h \ 12 | speex_preprocess.h \ 13 | speex_jitter.h \ 14 | speex_echo.h \ 15 | pcm_wrapper.h 16 | 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/jversion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * jversion.h 3 | * 4 | * Copyright (C) 1991-2009, Thomas G. Lane, Guido Vollbeding. 5 | * This file is part of the Independent JPEG Group's software. 6 | * For conditions of distribution and use, see the accompanying README file. 7 | * 8 | * This file contains software version identification. 9 | */ 10 | 11 | 12 | #define JVERSION "7 27-Jun-2009" 13 | 14 | #define JCOPYRIGHT "Copyright (C) 2009, Thomas G. Lane, Guido Vollbeding" 15 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/testCA.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBBzCBsgIBADBNMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFuZDEX 3 | MBUGA1UEChMOTWluY29tIFB0eSBMdGQxEDAOBgNVBAMTB1RFU1QgQ0EwXDANBgkq 4 | hkiG9w0BAQEFAANLADBIAkEAzW9brgA8efT2ODB+NrsflJZj3KKqKsm4OrXTRqfL 5 | VETj1ws/zCXl42XJAxdWQMCP0liKfc9Ut4xi1qCVI7N07wIDAQABoAAwDQYJKoZI 6 | hvcNAQEEBQADQQBjZZ42Det9Uw0AFwJy4ufUEy5Cv74pxBp5SZnljgHY+Az0Hs2S 7 | uNkIegr2ITX5azKi9nOkg9ZmsmGG13FIjiC/ 8 | -----END CERTIFICATE REQUEST----- 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/MySQLInterface/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(MySQLInterface) 2 | IF(NOT WIN32 AND UNIX) 3 | FILE(GLOB ALL_HEADER_SRCS *.h) 4 | FILE(GLOB ALL_CPP_SRCS *.cpp) 5 | FINDMYSQL() 6 | include_directories(./ ${RAKNETHEADERFILES} ${MYSQL_INCLUDE_DIR}) 7 | add_library(LibMySQLInterface STATIC ${ALL_CPP_SRCS} ${ALL_HEADER_SRCS}) 8 | target_link_libraries (LibMySQLInterface ${RAKNET_COMMON_LIBS} ${MYSQL_LIBRARIES}) 9 | VSUBFOLDER(LibMySQLInterface "DependentExtensions") 10 | ENDIF(NOT WIN32 AND UNIX) -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/AppTypes.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __APP_TYPES_H 12 | #define __APP_TYPES_H 13 | 14 | typedef unsigned int AppTime; 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/Logger/ClientOnly/Samples/D3D9/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Matrices.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 101 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/RakSleep.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __RAK_SLEEP_H 12 | #define __RAK_SLEEP_H 13 | 14 | #include "Export.h" 15 | 16 | void RAK_DLL_EXPORT RakSleep(unsigned int ms); 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/RPC3/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | project(LibRPC3) 3 | IF (NOT WIN32 AND UNIX) 4 | FILE(GLOB ALL_HEADER_SRCS *.h) 5 | FILE(GLOB ALL_CPP_SRCS *.cpp) 6 | FINDBOOST() 7 | include_directories("${Boost_INCLUDE_DIRS}" ${RAKNETHEADERFILES}) 8 | add_library(LibRPC3 STATIC ${ALL_CPP_SRCS} ${ALL_HEADER_SRCS} "${Boost_INCLUDE_DIRS}" "${Boost_INCLUDE_DIRS}/boost") 9 | target_link_libraries(LibRPC3 ${RAKNET_COMMON_LIBS} ${Boost_LIBRARIES}) 10 | ENDIF(NOT WIN32 AND UNIX) 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/s512-req.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBGzCBxgIBADBjMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFuZDEa 3 | MBgGA1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxIzAhBgNVBAMTGlNlcnZlciB0ZXN0 4 | IGNlcnQgKDUxMiBiaXQpMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJ+zw4Qnlf8S 5 | MVIPFe9GEcStgOY2Ww/dgNdhjeD8ckUJNP5VZkVDTGiXav6ooKXfX3j/7tdkuD8E 6 | y2//Kv7+ue0CAwEAATANBgkqhkiG9w0BAQQFAANBAAB+uQi+qwn6qRSHB8EUTvsm 7 | 5TNTHzYDeN39nyIbZNX2s0se3Srn2Bxft5YCwD3moFZ9QoyDHxE0h6qLX5yjD+8= 8 | -----END CERTIFICATE REQUEST----- 9 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dsa1024.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIIBHgKBgQCnP26Fv0FqKX3wn0cZMJCaCR3aajMexT2GlrMV4FMuj+BZgnOQPnUx 3 | mUd6UvuF5NmmezibaIqEm4fGHrV+hktTW1nPcWUZiG7OZq5riDb77Cjcwtelu+Us 4 | OSZL2ppwGJU3lRBWI/YV7boEXt45T/23Qx+1pGVvzYAR5HCVW1DNSQIVAPcHMe36 5 | bAYD1YWKHKycZedQZmVvAoGATd9MA6aRivUZb1BGJZnlaG8w42nh5bNdmLsohkj8 6 | 3pkEP1+IDJxzJA0gXbkqmj8YlifkYofBe3RiU/xhJ6h6kQmdtvFNnFQPWAbuSXQH 7 | zlV+I84W9srcWmEBfslxtU323DQph2j2XiCTs9v15AlsQReVkusBtXOlan7YMu0O 8 | Arg= 9 | -----END DSA PARAMETERS----- 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/IrrlichtDemo/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by resscript.rc 4 | // 5 | #define IDI_ICON1 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/PostgreSQLInterface/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(PostgreSQLInterface) 2 | IF (NOT WIN32 AND UNIX) 3 | FILE(GLOB ALL_HEADER_SRCS *.h) 4 | FILE(GLOB ALL_CPP_SRCS *.cpp) 5 | FINDPOSTGRE() 6 | include_directories(./ ${RAKNETHEADERFILES} ${POSTGRESQL_INCLUDE_DIR}) 7 | add_library(LibPostgreSQLInterface STATIC ${ALL_CPP_SRCS} ${ALL_HEADER_SRCS}) 8 | target_link_libraries (LibPostgreSQLInterface ${RAKNET_COMMON_LIBS} ${POSTGRESQL_LIBRARIES}) 9 | VSUBFOLDER(LibPostgreSQLInterface "DependentExtensions") 10 | ENDIF(NOT WIN32 AND UNIX) 11 | 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/Getche.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #if defined(_WIN32) 12 | #include /* getche() */ 13 | 14 | #else 15 | #include 16 | #include 17 | #include 18 | char getche(); 19 | #endif 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/portaudio_v18_1/fixdir.bat: -------------------------------------------------------------------------------- 1 | rem Use Astyle to fix style in 'C' files 2 | cd %1% 3 | 4 | fixlines -p *.c 5 | fixlines -p *.cpp 6 | fixlines -p *.cc 7 | 8 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.c 9 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cpp 10 | astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cc 11 | del *.orig 12 | @rem convert line terminators to Unix style LFs 13 | fixlines -u *.c 14 | fixlines -u *.cpp 15 | fixlines -u *.cc 16 | fixlines -u *.h 17 | del *.bak 18 | 19 | cd ..\ 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/minissdpc.h: -------------------------------------------------------------------------------- 1 | /* $Id: minissdpc.h,v 1.1 2007/08/31 15:15:33 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2005-2007 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __MINISSDPC_H__ 9 | #define __MINISSDPC_H__ 10 | 11 | struct UPNPDev * 12 | getDevicesFromMiniSSDPD(const char * devtype, const char * socketpath); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dh1024.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAPSI/VhOSdvNILSd5JEHNmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsY 3 | jY67VYy4XTjTNP18F1dDox0YbN4zISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6 4 | ypUM2Zafq9AKUJsCRtMIPWakXUGfnHy9iUsiGSa6q6Jew1XpL3jHAgEC 5 | -----END DH PARAMETERS----- 6 | 7 | These are the 1024 bit DH parameters from "Assigned Number for SKIP Protocols" 8 | (http://www.skip-vpn.org/spec/numbers.html). 9 | See there for how they were generated. 10 | Note that g is not a generator, but this is not a problem since p is a safe prime. 11 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/s512-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIIBPAIBAAJBAJ+zw4Qnlf8SMVIPFe9GEcStgOY2Ww/dgNdhjeD8ckUJNP5VZkVD 3 | TGiXav6ooKXfX3j/7tdkuD8Ey2//Kv7+ue0CAwEAAQJAN6W31vDEP2DjdqhzCDDu 4 | OA4NACqoiFqyblo7yc2tM4h4xMbC3Yx5UKMN9ZkCtX0gzrz6DyF47bdKcWBzNWCj 5 | gQIhANEoojVt7hq+SQ6MCN6FTAysGgQf56Q3TYoJMoWvdiXVAiEAw3e3rc+VJpOz 6 | rHuDo6bgpjUAAXM+v3fcpsfZSNO6V7kCIQCtbVjanpUwvZkMI9by02oUk9taki3b 7 | PzPfAfNPYAbCJQIhAJXNQDWyqwn/lGmR11cqY2y9nZ1+5w3yHGatLrcDnQHxAiEA 8 | vnlEGo8K85u+KwIOimM48ZG8oTk7iFdkqLJR1utT3aU= 9 | -----END RSA PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/Gets.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __GETS__H_ 12 | #define __GETS__H_ 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | char * Gets ( char * str, int num ); 19 | 20 | #ifdef __cplusplus 21 | } 22 | #endif 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/minissdpc.h: -------------------------------------------------------------------------------- 1 | /* $Id: minissdpc.h,v 1.1 2007/08/31 15:15:33 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2005-2007 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __MINISSDPC_H__ 9 | #define __MINISSDPC_H__ 10 | 11 | struct UPNPDev * 12 | getDevicesFromMiniSSDPD(const char * devtype, const char * socketpath); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/minisoap.h: -------------------------------------------------------------------------------- 1 | /* $Id: minisoap.h,v 1.4 2010/04/12 20:39:41 nanard Exp $ */ 2 | /* Project : miniupnp 3 | * Author : Thomas Bernard 4 | * Copyright (c) 2005 Thomas Bernard 5 | * This software is subject to the conditions detailed in the 6 | * LICENCE file provided in this distribution. */ 7 | #ifndef __MINISOAP_H__ 8 | #define __MINISOAP_H__ 9 | 10 | /*int httpWrite(int, const char *, int, const char *);*/ 11 | int soapPostSubmit(int, const char *, const char *, unsigned short, 12 | const char *, const char *, const char *); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/miniupnpcstrings.h.in: -------------------------------------------------------------------------------- 1 | /* $Id: miniupnpcstrings.h.in,v 1.2 2009/10/30 09:18:18 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2005-2009 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __MINIUPNPCSTRINGS_H__ 9 | #define __MINIUPNPCSTRINGS_H__ 10 | 11 | #define OS_STRING "OS/version" 12 | #define MINIUPNPC_VERSION_STRING "1.5" 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/minisoap.h: -------------------------------------------------------------------------------- 1 | /* $Id: minisoap.h,v 1.4 2010/04/12 20:39:41 nanard Exp $ */ 2 | /* Project : miniupnp 3 | * Author : Thomas Bernard 4 | * Copyright (c) 2005 Thomas Bernard 5 | * This software is subject to the conditions detailed in the 6 | * LICENCE file provided in this distribution. */ 7 | #ifndef __MINISOAP_H__ 8 | #define __MINISOAP_H__ 9 | 10 | /*int httpWrite(int, const char *, int, const char *);*/ 11 | int soapPostSubmit(int, const char *, const char *, unsigned short, 12 | const char *, const char *, const char *); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/Itoa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __RAK_ITOA_H 12 | #define __RAK_ITOA_H 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | char* Itoa( int value, char* result, int base ); 19 | 20 | #ifdef __cplusplus 21 | } 22 | #endif 23 | 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/miniupnpcstrings.h: -------------------------------------------------------------------------------- 1 | /* $Id: miniupnpcstrings.h.in,v 1.4 2011/01/04 11:41:53 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2005-2011 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __MINIUPNPCSTRINGS_H__ 9 | #define __MINIUPNPCSTRINGS_H__ 10 | 11 | #define OS_STRING "MSWindows/6.1.7601" 12 | #define MINIUPNPC_VERSION_STRING "1.6" 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/miniupnpcstrings.h.in: -------------------------------------------------------------------------------- 1 | /* $Id: miniupnpcstrings.h.in,v 1.4 2011/01/04 11:41:53 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2005-2011 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __MINIUPNPCSTRINGS_H__ 9 | #define __MINIUPNPCSTRINGS_H__ 10 | 11 | #define OS_STRING "OS/version" 12 | #define MINIUPNPC_VERSION_STRING "version" 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/NativeFeatureIncludesOverrides.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | // USER EDITABLE FILE 12 | // See NativeFeatureIncludes.h 13 | 14 | #ifndef __NATIVE_FEATURE_INCLDUES_OVERRIDES_H 15 | #define __NATIVE_FEATURE_INCLDUES_OVERRIDES_H 16 | 17 | #define LIBCAT_SECURITY 1 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/setupmingw32.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python 2 | # $Id: setupmingw32.py,v 1.3 2009/10/30 09:18:18 nanard Exp $ 3 | # the MiniUPnP Project (c) 2007-2009 Thomas Bernard 4 | # http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/ 5 | # 6 | # python script to build the miniupnpc module under unix 7 | # 8 | from distutils.core import setup, Extension 9 | setup(name="miniupnpc", version="1.5", 10 | ext_modules=[ 11 | Extension(name="miniupnpc", sources=["miniupnpcmodule.c"], 12 | libraries=["ws2_32"], 13 | extra_objects=["libminiupnpc.a"]) 14 | ]) 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/EpochTimeToString.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | 12 | /// \file EpochTimeToString.h 13 | /// 14 | 15 | 16 | #ifndef __EPOCH_TIME_TO_STRING_H 17 | #define __EPOCH_TIME_TO_STRING_H 18 | 19 | #include "Export.h" 20 | 21 | RAK_DLL_EXPORT char * EpochTimeToString(long long time); 22 | 23 | #endif 24 | 25 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/AUTHORS: -------------------------------------------------------------------------------- 1 | Jean-Marc Valin 2 | All the code except the following 3 | 4 | David Rowe via VoiceTronix 5 | lsp.c lsp.h 6 | Also ideas and feedback 7 | 8 | John Francis Edwards: 9 | wave_out.[ch], some #ifdefs for windows port and MSVC project files 10 | 11 | Segher Boessenkool 12 | Misc. optimizations (for QMF in particular) 13 | 14 | Atsuhiko Yamanaka : 15 | Patch to speexenc.c to add Vorbis comment format 16 | 17 | Radim Kolar : 18 | Patch to speexenc.c for supporting more input formats 19 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/TMTopology.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum TMTopology { 12 | TM_PEER_TO_PEER, 13 | TM_CLIENT_SERVER 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/setup.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python 2 | # $Id: setup.py,v 1.5 2009/10/30 09:18:18 nanard Exp $ 3 | # the MiniUPnP Project (c) 2007-2009 Thomas Bernard 4 | # http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/ 5 | # 6 | # python script to build the miniupnpc module under unix 7 | # 8 | # replace libminiupnpc.a by libminiupnpc.so for shared library usage 9 | from distutils.core import setup, Extension 10 | setup(name="miniupnpc", version="1.5", 11 | ext_modules=[ 12 | Extension(name="miniupnpc", sources=["miniupnpcmodule.c"], 13 | extra_objects=["libminiupnpc.a"]) 14 | ]) 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/libbz2.def: -------------------------------------------------------------------------------- 1 | LIBRARY LIBBZ2 2 | DESCRIPTION "libbzip2: library for data compression" 3 | EXPORTS 4 | BZ2_bzCompressInit 5 | BZ2_bzCompress 6 | BZ2_bzCompressEnd 7 | BZ2_bzDecompressInit 8 | BZ2_bzDecompress 9 | BZ2_bzDecompressEnd 10 | BZ2_bzReadOpen 11 | BZ2_bzReadClose 12 | BZ2_bzReadGetUnused 13 | BZ2_bzRead 14 | BZ2_bzWriteOpen 15 | BZ2_bzWrite 16 | BZ2_bzWriteClose 17 | BZ2_bzWriteClose64 18 | BZ2_bzBuffToBuffCompress 19 | BZ2_bzBuffToBuffDecompress 20 | BZ2_bzlibVersion 21 | BZ2_bzopen 22 | BZ2_bzdopen 23 | BZ2_bzread 24 | BZ2_bzwrite 25 | BZ2_bzflush 26 | BZ2_bzclose 27 | BZ2_bzerror 28 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/connecthostport.h: -------------------------------------------------------------------------------- 1 | /* $Id: connecthostport.h,v 1.1 2010/04/04 23:21:03 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2010 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __CONNECTHOSTPORT_H__ 9 | #define __CONNECTHOSTPORT_H__ 10 | 11 | /* connecthostport() 12 | * return a socket connected (TCP) to the host and port 13 | * or -1 in case of error */ 14 | int connecthostport(const char * host, unsigned short port); 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = conf.py apiref.rst changes.rst conformance.rst \ 2 | gettingstarted.rst github_commits.c index.rst portability.rst \ 3 | tutorial.rst upgrading.rst ext/refcounting.py 4 | 5 | SPHINXBUILD = sphinx-build 6 | SPHINXOPTS = -d _build/doctrees $(SPHINXOPTS_EXTRA) 7 | 8 | html-local: 9 | $(SPHINXBUILD) -b html $(SPHINXOPTS) $(srcdir) _build/html 10 | 11 | install-html-local: html 12 | mkdir -p $(DESTDIR)$(htmldir) 13 | cp -r _build/html $(DESTDIR)$(htmldir) 14 | 15 | uninstall-local: 16 | rm -rf $(DESTDIR)$(htmldir) 17 | 18 | clean-local: 19 | rm -rf _build 20 | rm -f ext/refcounting.pyc 21 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/README: -------------------------------------------------------------------------------- 1 | See INSTALL file for instruction on how to install Speex. 2 | 3 | The Speex is a patent-free, Open Source/Free Software voice codec. Unlike other codecs like MP3 and Ogg Vorbis, Speex is designed to compress voice at bitrates in the 2-45 kbps range. Possible applications include VoIP, internet audio streaming, archiving of speech data (e.g. voice mail), and audio books. In some sense, it is meant to be complementary to the Ogg Vorbis codec. 4 | 5 | To use the Speex command line tools: 6 | 7 | % speexenc [options] input_file.wav compressed_file.spx 8 | 9 | % speexdec [options] compressed_file.spx output_file.wav 10 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/connecthostport.h: -------------------------------------------------------------------------------- 1 | /* $Id: connecthostport.h,v 1.1 2010/04/04 23:21:03 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2010 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __CONNECTHOSTPORT_H__ 9 | #define __CONNECTHOSTPORT_H__ 10 | 11 | /* connecthostport() 12 | * return a socket connected (TCP) to the host and port 13 | * or -1 in case of error */ 14 | int connecthostport(const char * host, unsigned short port); 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/JoinTeamType.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum JoinTeamType { 12 | JOIN_ANY_AVAILABLE_TEAM, 13 | JOIN_SPECIFIC_TEAM, 14 | JOIN_NO_TEAM 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Ogre3DInterpDemo/readme.txt: -------------------------------------------------------------------------------- 1 | Project: Ogre 3D Interpolation Demo 2 | 3 | Description: Demonstrates how to lag a client in the past using the interpolation history class, in order to get smooth visuals despite choppy input. Start two instances on the same computer, press 's' on one instance, 'c' on the other. Hold down space to see the actual networking. 4 | 5 | Dependencies: Ogre 3D 1.7.1, assmed to have an enviroment variable $(OGRE_HOME) indicating the installation directory of Ogre. 6 | 7 | Related projects: ReplicaManager3 is used for object creation, destruction, and automatic serialization 8 | 9 | For help and support, please visit http://www.jenkinssoftware.com -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/SQLite3Plugin/readme.txt: -------------------------------------------------------------------------------- 1 | Project: SQLite3, SQLite3ClientLogger, SQLite3ServerLogger 2 | 3 | Description: SQLite3 just passes calls to sqlite3_exec over the network. Replacement for LightweightDatabaseServer. SQLite3ClientLogger and SQLite3ServerLogger extend this to using an SQLite database for logging. 4 | 5 | Dependencies: http://www.sqlite.org version 3 6 | 7 | Related projects: None 8 | 9 | For help and support, please visit http://www.jenkinssoftware.com 10 | 11 | See also: 12 | http://www.sqlite.org/quickstart.html 13 | http://www.sqlite.org/c3ref/open.html 14 | http://www.sqlite.org/c3ref/free_table.html 15 | http://www.sqlite.org/c3ref/exec.html 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/dh2048.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIIBCAKCAQEA9kJXtwh/CBdyorrWqULzBej5UxE5T7bxbrlLOCDaAadWoxTpj0BV 3 | 89AHxstDqZSt90xkhkn4DIO9ZekX1KHTUPj1WV/cdlJPPT2N286Z4VeSWc39uK50 4 | T8X8dryDxUcwYc58yWb/Ffm7/ZFexwGq01uejaClcjrUGvC/RgBYK+X0iP1YTknb 5 | zSC0neSRBzZrM2w4DUUdD3yIsxx8Wy2O9vPJI8BD8KVbGI2Ou1WMuF040zT9fBdX 6 | Q6MdGGzeMyEstSr/POGxKUAYEY18hKcKctaGxAMZyAcpesqVDNmWn6vQClCbAkbT 7 | CD1mpF1Bn5x8vYlLIhkmuquiXsNV6TILOwIBAg== 8 | -----END DH PARAMETERS----- 9 | 10 | These are the 2048 bit DH parameters from "Assigned Number for SKIP Protocols" 11 | (http://www.skip-vpn.org/spec/numbers.html). 12 | See there for how they were generated. 13 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/src/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = jansson.def 2 | 3 | include_HEADERS = jansson.h jansson_config.h 4 | 5 | lib_LTLIBRARIES = libjansson.la 6 | libjansson_la_SOURCES = \ 7 | dump.c \ 8 | error.c \ 9 | hashtable.c \ 10 | hashtable.h \ 11 | jansson_private.h \ 12 | load.c \ 13 | memory.c \ 14 | pack_unpack.c \ 15 | strbuffer.c \ 16 | strbuffer.h \ 17 | strconv.c \ 18 | utf.c \ 19 | utf.h \ 20 | value.c 21 | libjansson_la_LDFLAGS = \ 22 | -no-undefined \ 23 | -export-symbols-regex '^json_' \ 24 | -version-info 8:0:4 25 | 26 | if GCC 27 | # These flags are gcc specific 28 | AM_CFLAGS = -Wall -Wextra -Wdeclaration-after-statement -Werror 29 | endif 30 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Lobby2/Rooms/IntervalTimer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __INTERVAL_TIMER_H 12 | #define __INTERVAL_TIMER_H 13 | 14 | #include "RakNetTypes.h" 15 | 16 | struct IntervalTimer 17 | { 18 | void SetPeriod(RakNet::TimeMS period); 19 | bool UpdateInterval(RakNet::TimeMS elapsed); 20 | 21 | RakNet::TimeMS basePeriod, remaining; 22 | }; 23 | 24 | #endif -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/WSAStartupSingleton.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __WSA_STARTUP_SINGLETON_H 12 | #define __WSA_STARTUP_SINGLETON_H 13 | 14 | class WSAStartupSingleton 15 | { 16 | public: 17 | WSAStartupSingleton(); 18 | ~WSAStartupSingleton(); 19 | static void AddRef(void); 20 | static void Deref(void); 21 | 22 | protected: 23 | static int refCount; 24 | }; 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/PluginReceiveResult.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum PluginReceiveResult { 12 | RR_STOP_PROCESSING_AND_DEALLOCATE = 0, 13 | RR_CONTINUE_PROCESSING, 14 | RR_STOP_PROCESSING 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/cert.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIBoDCCAUoCAQAwDQYJKoZIhvcNAQEEBQAwYzELMAkGA1UEBhMCQVUxEzARBgNV 3 | BAgTClF1ZWVuc2xhbmQxGjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMSMwIQYD 4 | VQQDExpTZXJ2ZXIgdGVzdCBjZXJ0ICg1MTIgYml0KTAeFw05NzA5MDkwMzQxMjZa 5 | Fw05NzEwMDkwMzQxMjZaMF4xCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0 6 | YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxFzAVBgNVBAMT 7 | DkVyaWMgdGhlIFlvdW5nMFEwCQYFKw4DAgwFAANEAAJBALVEqPODnpI4rShlY8S7 8 | tB713JNvabvn6Gned7zylwLLiXQAo/PAT6mfdWPTyCX9RlId/Aroh1ou893BA32Q 9 | sggwDQYJKoZIhvcNAQEEBQADQQCU5SSgapJSdRXJoX+CpCvFy+JVh9HpSjCpSNKO 10 | 19raHv98hKAUJuP9HyM+SUsffO6mAIgitUaqW8/wDMePhEC3 11 | -----END CERTIFICATE----- 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/DLL_Swig/PostBuildDebug.bat: -------------------------------------------------------------------------------- 1 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin" GOTO SKIPMAKEBIN 2 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin" 3 | :SKIPMAKEBIN 4 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin\X86" GOTO SKIPMAKEX86 5 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin\X86" 6 | :SKIPMAKEX86 7 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Debug" GOTO SKIPMAKEOUTDIR 8 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Debug" 9 | :SKIPMAKEOUTDIR 10 | copy /Y "Debug\RakNet.dll" "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Debug\RakNet.dll" 11 | copy /Y "../SwigOutput\SwigCSharpOutput\*.cs" "../SwigWindowsCSharpSample\SwigTestApp\SwigFiles\" -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/MultilistType.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum MultilistType { 12 | ML_UNORDERED_LIST, 13 | ML_STACK, 14 | ML_QUEUE, 15 | ML_ORDERED_LIST, 16 | ML_VARIABLE_DURING_RUNTIME 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/req.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBlzCCAVcCAQAwXjELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUx 3 | ITAfBgNVBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDEXMBUGA1UEAxMORXJp 4 | YyB0aGUgWW91bmcwge8wgaYGBSsOAwIMMIGcAkEA+ZiKEvZmc9MtnaFZh4NiZ3oZ 5 | S4J1PHvPrm9MXj5ntVheDPkdmBDTncyaGAJcMjwsyB/GvLDGd6yGCw/8eF+09wIV 6 | AK3VagOxGd/Q4Af5NbxR5FB7CXEjAkA2t/q7HgVLi0KeKvcDG8BRl3wuy7bCvpjg 7 | tWiJc/tpvcuzeuAayH89UofjAGueKjXDADiRffvSdhrNw5dkqdqlA0QAAkEAtUSo 8 | 84OekjitKGVjxLu0HvXck29pu+foad53vPKXAsuJdACj88BPqZ91Y9PIJf1GUh38 9 | CuiHWi7z3cEDfZCyCKAAMAkGBSsOAwIbBQADLwAwLAIUTg8amKVBE9oqC5B75dDQ 10 | Chy3LdQCFHKodGEj3LjuTzdm/RTe2KZL9Uzf 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/PacketPriority.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum PacketPriority { 12 | IMMEDIATE_PRIORITY, 13 | HIGH_PRIORITY, 14 | MEDIUM_PRIORITY, 15 | LOW_PRIORITY, 16 | NUMBER_OF_PRIORITIES 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/ca-req.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBmTCCAQICAQAwWzELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQx 3 | GjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRswGQYDVQQDExJUZXN0IENBICgx 4 | MDI0IGJpdCkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKO7o8t116VP6cgy 5 | bTsZDCZhr95nYlZuya3aCi1IKoztqwWnjbmDFIriOqGFPrZQ+moMETC9D59iRW/d 6 | FXSv1F65ka/XY2hLh9exCCo7XuUcDs53Qp3bI3AmMqHjgzE8oO3ajyJAzJkTTOUe 7 | cQU2mw/gI4tMM0LqWMQS7luTy4+xAgMBAAEwDQYJKoZIhvcNAQEEBQADgYEAKlk7 8 | cxu9gCJN3/iQFyJXQ6YphaiQAT5VBXTx9ftRrQIjA3vxlDzPWGDy+V5Tqa7h8PtR 9 | 5Bn00JShII2zf0hjyjKils6x/UkWmjEiwSiFp4hR70iE8XwSNEHY2P6j6nQEIpgW 10 | kbfgmmUqk7dl2V+ossTJ80B8SBpEhrn81V/cHxA= 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/pca-req.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBmjCCAQMCAQAwXDELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQx 3 | GjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRwwGgYDVQQDExNUZXN0IFBDQSAo 4 | MTAyNCBiaXQpMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCdoWk/3+WcMlfj 5 | Irkg40ketmnQaEogQe1LLcuOJV6rKfUSAsPgwgsabJ/wn8TxA1yy3eKJbFl3OiUX 6 | MRsp22Jp85PmemiDzyUIStwk72qhp1imbANZvlmlCFKiQrjUyuDfu4TABmn+kkt3 7 | vR1YBEOGt+IFye1UBVSATVdRJ2UVhwIDAQABMA0GCSqGSIb3DQEBBAUAA4GBAEzz 8 | IG8NnfpnPTQSCN5zJhOfy6p9AcDyQzuJirYv1HR/qoYWalPh/U2uiK0lAim7qMcv 9 | wOlK3I7A8B7/4dLqvIqgtUj9b1WT8zIrnwdvJI4osLI2BY+c1pVlp174DHLMol1L 10 | Cl1e3N5BTm7lCitTYjuUhsw6hiA8IcdNKDo6sktV 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Autopatcher/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(Autopatcher) 2 | IF (UNIX AND NOT WIN32) 3 | FILE(GLOB ALL_HEADER_SRCS *.h) 4 | FILE(GLOB ALL_CPP_SRCS *.cpp) 5 | include_directories(${RAKNETHEADERFILES} ./ ${bzip2-1.0.3_SOURCE_DIR}) 6 | add_library(LibAutopatcher STATIC ${ALL_CPP_SRCS} ${ALL_HEADER_SRCS}) 7 | target_link_libraries (LibAutopatcher ${RAKNET_COMMON_LIBS} LibBZip2) 8 | ENDIF(UNIX AND NOT WIN32) 9 | IF(USEMYSQL AND NOT DISABLEDEPENDENCIES) 10 | add_subdirectory(AutopatcherMySQLRepository) 11 | ENDIF(USEMYSQL AND NOT DISABLEDEPENDENCIES) 12 | IF(USEPOSTGRESQL AND NOT DISABLEDEPENDENCIES) 13 | add_subdirectory(AutopatcherPostgreRepository) 14 | ENDIF(USEPOSTGRESQL AND NOT DISABLEDEPENDENCIES) 15 | 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/DLL_Swig/PostBuildRelease.bat: -------------------------------------------------------------------------------- 1 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin" GOTO SKIPMAKEBIN 2 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin" 3 | :SKIPMAKEBIN 4 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin\X86" GOTO SKIPMAKEX86 5 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin\X86" 6 | :SKIPMAKEX86 7 | IF EXIST "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Release" GOTO SKIPMAKEOUTDIR 8 | mkdir "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Release" 9 | :SKIPMAKEOUTDIR 10 | copy /Y "Release\RakNet.dll" "../SwigWindowsCSharpSample\SwigTestApp\bin\X86\Release\RakNet.dll" 11 | copy /Y "../SwigOutput\SwigCSharpOutput\*.cs" "../SwigWindowsCSharpSample\SwigTestApp\SwigFiles\" -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/ReadyEventSystemStatus.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum ReadyEventSystemStatus { 12 | RES_NOT_WAITING, 13 | RES_WAITING, 14 | RES_READY, 15 | RES_ALL_READY, 16 | RES_UNKNOWN_EVENT 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/RakAlloca.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #if defined(__FreeBSD__) 12 | #include 13 | 14 | 15 | 16 | 17 | #elif defined ( __APPLE__ ) || defined ( __APPLE_CC__ ) 18 | #include 19 | #include 20 | #elif defined(_WIN32) 21 | #include 22 | #else 23 | #include 24 | // Alloca needed on Ubuntu apparently 25 | #include 26 | #endif 27 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/FormatString.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | /// \file FormatString.h 12 | /// 13 | 14 | 15 | #ifndef __FORMAT_STRING_H 16 | #define __FORMAT_STRING_H 17 | 18 | #include "Export.h" 19 | 20 | extern "C" { 21 | char * FormatString(const char *format, ...); 22 | } 23 | // Threadsafe 24 | extern "C" { 25 | char * FormatStringTS(char *output, const char *format, ...); 26 | } 27 | 28 | 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/PublicKeyMode.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum PublicKeyMode { 12 | PKM_INSECURE_CONNECTION, 13 | PKM_ACCEPT_ANY_PUBLIC_KEY, 14 | PKM_USE_KNOWN_PUBLIC_KEY, 15 | PKM_USE_TWO_WAY_AUTHENTICATION 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/readme.dos: -------------------------------------------------------------------------------- 1 | This archive contains a DOS-friendly version of the Independent JPEG Group's 2 | source code. It differs from the normal distribution in that: 3 | 4 | 1. The archive format is zip rather than tar+gzip. You should be able to 5 | unpack it with PKUNZIP (2.04g or later) or Info-Zip's unzip or 7-Zip. 6 | 7 | 2. Newlines have been converted from Unix (LF) to DOS (CR/LF) style in all 8 | text files, but not in the binary files (test*.*). 9 | 10 | 3. Object files have been included for jmemdosa.asm. See jdosaobj.txt. 11 | 12 | Please see the main README file for the primary documentation. 13 | 14 | If you'd rather have a non-DOSified archive, see the ARCHIVE LOCATIONS section 15 | of README. 16 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/miniupnpctypes.h: -------------------------------------------------------------------------------- 1 | /* $Id: miniupnpctypes.h,v 1.1 2011/02/15 11:10:40 nanard Exp $ */ 2 | /* Miniupnp project : http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org 3 | * Author : Thomas Bernard 4 | * Copyright (c) 2011 Thomas Bernard 5 | * This software is subject to the conditions detailed in the 6 | * LICENCE file provided within this distribution */ 7 | #ifndef __MINIUPNPCTYPES_H__ 8 | #define __MINIUPNPCTYPES_H__ 9 | 10 | #if (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) 11 | #define UNSIGNED_INTEGER unsigned long long 12 | #define STRTOUI strtoull 13 | #else 14 | #define UNSIGNED_INTEGER unsigned int 15 | #define STRTOUI strtoul 16 | #endif 17 | 18 | #endif 19 | 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/openssl-1.0.0d/bin/PEM/s1024req.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBojCCAQsCAQAwZDELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQx 3 | GjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMSQwIgYDVQQDExtTZXJ2ZXIgdGVz 4 | dCBjZXJ0ICgxMDI0IGJpdCkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALMR 5 | 9TwT5kZMa0ddXleG8zYuDfZ9dQiPJ1dvfgEZU9fqg3v5o1VL15ZrK9b/73+9RvRo 6 | KqKUmukV6yAi1XZPxWGGM4T75dTPjq42lwxTvAcwQBdS58+nO2kWbxkSTa0Uq9p2 7 | RJKg3yVvXWO69lWRKQ+UHrmkWFJ7hApKnongeuRjAgMBAAEwDQYJKoZIhvcNAQEE 8 | BQADgYEAStHlk4pBbwiNeQ2/PKTPPXzITYC8Gn0XMbrU94e/6JIKiO7aArq9Espq 9 | nrBSvC14dHcNl6NNvnkEKdQ7hAkcACfBbnOXA/oQvMBd4GD78cH3k0jVDoVUEjil 10 | frLfWlckW6WzpTktt0ZPDdAjJCmKVh0ABHimi7Bo9FC3wIGIe5M= 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.5/upnperrors.h: -------------------------------------------------------------------------------- 1 | /* $Id: upnperrors.h,v 1.2 2008/07/02 23:31:15 nanard Exp $ */ 2 | /* (c) 2007 Thomas Bernard 3 | * All rights reserved. 4 | * MiniUPnP Project. 5 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 6 | * This software is subjet to the conditions detailed in the 7 | * provided LICENCE file. */ 8 | #ifndef __UPNPERRORS_H__ 9 | #define __UPNPERRORS_H__ 10 | 11 | #include "declspec.h" 12 | 13 | #ifdef __cplusplus 14 | extern "C" { 15 | #endif 16 | 17 | /* strupnperror() 18 | * Return a string description of the UPnP error code 19 | * or NULL for undefinded errors */ 20 | LIBSPEC const char * strupnperror(int err); 21 | 22 | #ifdef __cplusplus 23 | } 24 | #endif 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/README.blackfin: -------------------------------------------------------------------------------- 1 | Speex has been ported to the Blackfin DSP, for the STAMP development board. 2 | 3 | This port has been tested on the STAMP development board and requires the 4 | toolchain available at http://blackfin.uclinux.org/ 5 | 6 | In order to cross-compile for uclinux: 7 | export CC=bfin-uclinux-gcc 8 | ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux 9 | make 10 | make install 11 | 12 | The --enable-blackfin-asm option is not required, but it speeds up Speex by 13 | approximately a factor of two. 14 | 15 | If you're getting a crash when enabling --enable-blackfin-asm then your 16 | toolchain (assembler in fact) is probably too old (a bug was fixed in the 17 | June 3rd build) 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/upnperrors.h: -------------------------------------------------------------------------------- 1 | /* $Id: upnperrors.h,v 1.3 2012/03/05 19:42:47 nanard Exp $ */ 2 | /* (c) 2007 Thomas Bernard 3 | * All rights reserved. 4 | * MiniUPnP Project. 5 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 6 | * This software is subjet to the conditions detailed in the 7 | * provided LICENCE file. */ 8 | #ifndef __UPNPERRORS_H__ 9 | #define __UPNPERRORS_H__ 10 | 11 | #include "declspec.h" 12 | 13 | #ifdef __cplusplus 14 | extern "C" { 15 | #endif 16 | 17 | /* strupnperror() 18 | * Return a string description of the UPnP error code 19 | * or NULL for undefinded errors */ 20 | LIBSPEC const char * strupnperror(int err); 21 | 22 | #ifdef __cplusplus 23 | } 24 | #endif 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/receivedata.h: -------------------------------------------------------------------------------- 1 | /* $Id: receivedata.h,v 1.2 2012/03/05 19:42:47 nanard Exp $ */ 2 | /* Project: miniupnp 3 | * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ 4 | * Author: Thomas Bernard 5 | * Copyright (c) 2011 Thomas Bernard 6 | * This software is subjects to the conditions detailed 7 | * in the LICENCE file provided within this distribution */ 8 | #ifndef __RECEIVEDATA_H__ 9 | #define __RECEIVEDATA_H__ 10 | 11 | /* Reads data from the specified socket. 12 | * Returns the number of bytes read if successful, zero if no bytes were 13 | * read or if we timed out. Returns negative if there was an error. */ 14 | int receivedata(int socket, char * data, int length, int timeout); 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/ConnectionState.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum ConnectionState { 12 | IS_PENDING, 13 | IS_CONNECTING, 14 | IS_CONNECTED, 15 | IS_DISCONNECTING, 16 | IS_SILENTLY_DISCONNECTING, 17 | IS_DISCONNECTED, 18 | IS_NOT_CONNECTED 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/bzip2-1.0.6/bz-html.xsl: -------------------------------------------------------------------------------- 1 | 2 | ]> 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jpeg-7/makejsln.vc9: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual C++ Express 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "jpeg", "jpeg.vcproj", "{E61592E1-28F4-4AFC-9EE1-9BE833A061C1}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {E61592E1-28F4-4AFC-9EE1-9BE833A061C1}.Release|Win32.ActiveCfg = Release|Win32 12 | {E61592E1-28F4-4AFC-9EE1-9BE833A061C1}.Release|Win32.Build.0 = Release|Win32 13 | EndGlobalSection 14 | GlobalSection(SolutionProperties) = preSolution 15 | HideSolutionNode = FALSE 16 | EndGlobalSection 17 | EndGlobal 18 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/setup.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python 2 | # $Id: setup.py,v 1.8 2012/03/05 04:54:00 nanard Exp $ 3 | # the MiniUPnP Project (c) 2007-2012 Thomas Bernard 4 | # http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/ 5 | # 6 | # python script to build the miniupnpc module under unix 7 | # 8 | # replace libminiupnpc.a by libminiupnpc.so for shared library usage 9 | from distutils.core import setup, Extension 10 | from distutils import sysconfig 11 | sysconfig.get_config_vars()["OPT"] = '' 12 | sysconfig.get_config_vars()["CFLAGS"] = '' 13 | setup(name="miniupnpc", version="1.6", 14 | ext_modules=[ 15 | Extension(name="miniupnpc", sources=["miniupnpcmodule.c"], 16 | extra_objects=["libminiupnpc.a"]) 17 | ]) 18 | 19 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/Swig/InternalSwigItems/InternalSwigWindowsCSharpSample/InternalSwigTestApp/SwigFiles/UDPForwarderResult.cs: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------------- 2 | * This file was automatically generated by SWIG (http://www.swig.org). 3 | * Version 2.0.1 4 | * 5 | * Do not make changes to this file unless you know what you are doing--modify 6 | * the SWIG interface file instead. 7 | * ----------------------------------------------------------------------------- */ 8 | 9 | namespace RakNet { 10 | 11 | public enum UDPForwarderResult { 12 | UDPFORWARDER_FORWARDING_ALREADY_EXISTS, 13 | UDPFORWARDER_NO_SOCKETS, 14 | UDPFORWARDER_BIND_FAILED, 15 | UDPFORWARDER_INVALID_PARAMETERS, 16 | UDPFORWARDER_SUCCESS 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/Base64Encoder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | #ifndef __BASE_64_ENCODER_H 12 | #define __BASE_64_ENCODER_H 13 | 14 | #include "Export.h" 15 | 16 | extern "C" { 17 | /// \brief Returns how many bytes were written. 18 | // outputData should be at least the size of inputData * 2 + 6 19 | int Base64Encoding(const unsigned char *inputData, int dataLength, char *outputData); 20 | } 21 | 22 | extern "C" { 23 | const char *Base64Map(void); 24 | } 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/speex-1.1.12/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. -*-Makefile-*- 2 | 3 | # To disable automatic dependency tracking if using other tools than 4 | # gcc and gmake, add the option 'no-dependencies' 5 | AUTOMAKE_OPTIONS = 1.8 6 | 7 | m4datadir = $(datadir)/aclocal 8 | m4data_DATA = speex.m4 9 | 10 | pkgconfigdir = $(libdir)/pkgconfig 11 | pkgconfig_DATA = speex.pc 12 | 13 | EXTRA_DIST = Speex.spec Speex.spec.in Speex.kdevelop speex.m4 speex.pc.in README.blackfin README.symbian README.TI-DSP 14 | 15 | #Fools KDevelop into including all files 16 | SUBDIRS = libspeex include @src@ doc win32 symbian ti 17 | 18 | DIST_SUBDIRS = libspeex include src doc win32 symbian ti 19 | 20 | rpm: dist 21 | rpmbuild -ta ${PACKAGE}-${VERSION}.tar.gz 22 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/miniupnpc-1.6.20120410/setupmingw32.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python 2 | # $Id: setupmingw32.py,v 1.7 2012/03/05 04:54:00 nanard Exp $ 3 | # the MiniUPnP Project (c) 2007-2012 Thomas Bernard 4 | # http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/ 5 | # 6 | # python script to build the miniupnpc module under windows (using mingw32) 7 | # 8 | from distutils.core import setup, Extension 9 | from distutils import sysconfig 10 | sysconfig.get_config_vars()["OPT"] = '' 11 | sysconfig.get_config_vars()["CFLAGS"] = '' 12 | setup(name="miniupnpc", version="1.6", 13 | ext_modules=[ 14 | Extension(name="miniupnpc", sources=["miniupnpcmodule.c"], 15 | libraries=["ws2_32", "iphlpapi"], 16 | extra_objects=["libminiupnpc.a"]) 17 | ]) 18 | 19 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Copyright (c) 2009-2012 Petri Lehtinen 4 | # 5 | # Jansson is free software; you can redistribute it and/or modify 6 | # it under the terms of the MIT license. See LICENSE for details. 7 | 8 | is_test() { 9 | test -d $test_path 10 | } 11 | 12 | run_test() { 13 | $json_process <$test_path/input >$test_log/stdout 2>$test_log/stderr 14 | valgrind_check $test_log/stderr || return 1 15 | cmp -s $test_path/error $test_log/stderr 16 | } 17 | 18 | show_error() { 19 | valgrind_show_error && return 20 | 21 | echo "EXPECTED ERROR:" 22 | nl -bn $test_path/error 23 | echo "ACTUAL ERROR:" 24 | nl -bn $test_log/stderr 25 | } 26 | 27 | . $top_srcdir/test/scripts/run-tests.sh 28 | -------------------------------------------------------------------------------- /ragemp-raknet/RakNet/Source/DS_HuffmanEncodingTreeNode.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014, Oculus VR, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | */ 10 | 11 | /// \file 12 | /// \brief \b [Internal] A single node in the Huffman Encoding Tree. 13 | /// 14 | 15 | #ifndef __HUFFMAN_ENCODING_TREE_NODE 16 | #define __HUFFMAN_ENCODING_TREE_NODE 17 | 18 | struct HuffmanEncodingTreeNode 19 | { 20 | unsigned char value; 21 | unsigned weight; 22 | HuffmanEncodingTreeNode *left; 23 | HuffmanEncodingTreeNode *right; 24 | HuffmanEncodingTreeNode *parent; 25 | }; 26 | 27 | #endif 28 | --------------------------------------------------------------------------------