├── 3.x_to_4.x_upgrade.txt ├── CMakeLists.txt ├── CmakeIncludes ├── CmakeMacros.txt ├── FindBoost.cmake ├── FindFMODEx.cmake ├── FindIrrKlang.cmake ├── FindIrrlicht.cmake ├── FindMacros.txt ├── FindMySQL.cmake ├── FindPortAudio.cmake ├── FindPostgreSQL.cmake ├── FindSpeex.cmake ├── FindSpeexDSP.cmake └── Ogre3D │ ├── FindOGRE.cmake │ ├── FindOIS.cmake │ ├── FindPkgMacros.cmake │ └── PreprocessorUtils.cmake ├── DependentExtensions ├── Autopatcher │ ├── ApplyPatch.cpp │ ├── ApplyPatch.h │ ├── AutopatcherClient.cpp │ ├── AutopatcherClient.h │ ├── AutopatcherMySQLRepository │ │ ├── AutopatcherMySQLRepository.cpp │ │ ├── AutopatcherMySQLRepository.h │ │ ├── AutopatcherMySQLRepository.vcproj │ │ ├── AutopatcherMySQLRepository.vcproj.user │ │ ├── CMakeLists.txt │ │ ├── FindMySQL.cmake │ │ └── readme.txt │ ├── AutopatcherPostgreRepository │ │ ├── AutopatcherPostgreRepository.cpp │ │ ├── AutopatcherPostgreRepository.h │ │ ├── AutopatcherPostgreRepository.vcproj │ │ ├── AutopatcherPostgreRepository.vcproj.user │ │ ├── AutopatcherPostgreRepository_vc8.vcproj │ │ ├── AutopatcherPostgreRepository_vc9.vcproj │ │ ├── CMakeLists.txt │ │ └── Readme.txt │ ├── AutopatcherServer.cpp │ ├── AutopatcherServer.h │ ├── CMakeLists.txt │ ├── CreatePatch.cpp │ ├── CreatePatch.h │ ├── MemoryCompressor.cpp │ └── MemoryCompressor.h ├── CMakeLists.txt ├── DXTCompressor │ ├── DXTCompressor.sln │ ├── DXTCompressor.vcproj │ ├── External │ │ ├── include │ │ │ ├── Cg │ │ │ │ ├── cg.h │ │ │ │ ├── cgD3D10.h │ │ │ │ ├── cgD3D8.h │ │ │ │ ├── cgD3D9.h │ │ │ │ ├── cgGL.h │ │ │ │ ├── cgGL_profiles.h │ │ │ │ ├── cg_bindlocations.h │ │ │ │ ├── cg_datatypes.h │ │ │ │ ├── cg_enums.h │ │ │ │ ├── cg_errors.h │ │ │ │ └── cg_profiles.h │ │ │ ├── GL │ │ │ │ ├── glew.h │ │ │ │ ├── glext.h │ │ │ │ └── glut.h │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── lib │ │ │ ├── cg.lib │ │ │ ├── cgD3D10.lib │ │ │ ├── cgD3D8.lib │ │ │ ├── cgD3D9.lib │ │ │ ├── cgGL.lib │ │ │ ├── glew32.lib │ │ │ ├── glut32.lib │ │ │ └── glutstatic.lib │ ├── Src │ │ ├── DDSHeader.h │ │ ├── DXTCompressor.cpp │ │ ├── DXTCompressor.h │ │ ├── FrameBufferRenderBuffer.hpp │ │ ├── OpenGLWindow.hpp │ │ ├── ShaderSource.h │ │ └── main.cpp │ ├── cg.dll │ ├── cgGL.dll │ ├── glew32.dll │ └── glut32.dll ├── GFx3 │ ├── FxGameDelegate.cpp │ └── FxGameDelegate.h ├── IrrlichtDemo │ ├── CDemo.cpp │ ├── CDemo.h │ ├── CMainMenu.cpp │ ├── CMainMenu.h │ ├── CMakeLists.txt │ ├── Irrlicht.dll │ ├── Irrlicht.exp │ ├── Irrlicht.lib │ ├── IrrlichtDemo.v8.vcproj │ ├── IrrlichtDemo.vcproj.user │ ├── IrrlichtMedia │ │ ├── IrrlichtTheme.ogg │ │ ├── ball.wav │ │ ├── fireball.bmp │ │ ├── fonthaettenschweiler.bmp │ │ ├── impact.wav │ │ ├── irrlicht.dat │ │ ├── irrlicht2_bk.jpg │ │ ├── irrlicht2_dn.jpg │ │ ├── irrlicht2_ft.jpg │ │ ├── irrlicht2_lf.jpg │ │ ├── irrlicht2_rt.jpg │ │ ├── irrlicht2_up.jpg │ │ ├── irrlichtlogo2.png │ │ ├── map-20kdm2.pk3 │ │ ├── particlewhite.bmp │ │ ├── portal1.bmp │ │ ├── portal2.bmp │ │ ├── portal3.bmp │ │ ├── portal4.bmp │ │ ├── portal5.bmp │ │ ├── portal6.bmp │ │ ├── portal7.bmp │ │ ├── smoke.bmp │ │ ├── sydney.bmp │ │ └── sydney.md2 │ ├── RakNetStuff.cpp │ ├── RakNetStuff.h │ ├── demo.layout │ ├── icon.ico │ ├── irrKlang-1.1.3 │ │ ├── ik_ESoundEngineOptions.h │ │ ├── ik_ESoundOutputDrivers.h │ │ ├── ik_EStreamModes.h │ │ ├── ik_IAudioRecorder.h │ │ ├── ik_IAudioStream.h │ │ ├── ik_IAudioStreamLoader.h │ │ ├── ik_IFileFactory.h │ │ ├── ik_IFileReader.h │ │ ├── ik_IRefCounted.h │ │ ├── ik_ISound.h │ │ ├── ik_ISoundDeviceList.h │ │ ├── ik_ISoundEffectControl.h │ │ ├── ik_ISoundEngine.h │ │ ├── ik_ISoundSource.h │ │ ├── ik_ISoundStopEventReceiver.h │ │ ├── ik_IVirtualRefCounted.h │ │ ├── ik_SAudioStreamFormat.h │ │ ├── ik_irrKlangTypes.h │ │ ├── ik_vec3d.h │ │ ├── irrKlang.exp │ │ ├── irrKlang.h │ │ └── irrKlang.lib │ ├── irrKlang.dll │ ├── main.cpp │ ├── readme.txt │ ├── resource.h │ └── resscript.rc ├── Lobby2 │ ├── Lobby2Client.cpp │ ├── Lobby2Client.h │ ├── Lobby2Message.cpp │ ├── Lobby2Message.h │ ├── Lobby2Plugin.cpp │ ├── Lobby2Plugin.h │ ├── Lobby2Presence.cpp │ ├── Lobby2Presence.h │ ├── Lobby2ResultCode.cpp │ ├── Lobby2ResultCode.h │ ├── Lobby2Server.cpp │ ├── Lobby2Server.h │ ├── PGSQL │ │ ├── Lobby2Message_PGSQL.cpp │ │ ├── Lobby2Message_PGSQL.h │ │ ├── Lobby2Server_PGSQL.cpp │ │ └── Lobby2Server_PGSQL.h │ ├── Rooms │ │ ├── IntervalTimer.cpp │ │ ├── IntervalTimer.h │ │ ├── ProfanityFilter.cpp │ │ ├── ProfanityFilter.h │ │ ├── RoomTypes.cpp │ │ ├── RoomTypes.h │ │ ├── RoomsContainer.cpp │ │ ├── RoomsContainer.h │ │ ├── RoomsErrorCodes.cpp │ │ ├── RoomsErrorCodes.h │ │ ├── RoomsPlugin.cpp │ │ └── RoomsPlugin.h │ └── Steam │ │ ├── Lobby2Client_Steam.cpp │ │ ├── Lobby2Client_Steam.h │ │ ├── Lobby2Client_Steam_Impl.cpp │ │ ├── Lobby2Client_Steam_Impl.h │ │ ├── Lobby2Message_Steam.cpp │ │ ├── Lobby2Message_Steam.h │ │ └── steamconsole.vcproj ├── Marmalade │ ├── RakNet.mkb │ └── RakNet.mkf ├── MySQLInterface │ ├── CMakeLists.txt │ ├── MySQLInterface.cpp │ └── MySQLInterface.h ├── Ogre3DInterpDemo │ ├── App3D.cpp │ ├── App3D.h │ ├── AppInterface.cpp │ ├── AppInterface.h │ ├── AppTypes.h │ ├── CMakeLists.txt │ ├── FSM.cpp │ ├── FSM.h │ ├── Ogre3DInterpDemo.vcproj │ ├── Ogre3DInterpDemo.vcproj.user │ ├── OgreResources │ │ ├── KernelTexture.dds │ │ ├── OgreCore.zip │ │ ├── OgreMeshUpgrade.exe │ │ ├── PopcornKernel.material │ │ ├── PopcornKernel.max │ │ ├── PopcornKernel.mesh │ │ ├── PopcornPopped.material │ │ ├── PopcornPopped.max │ │ ├── PopcornPopped.mesh │ │ ├── PoppedTexture.dds │ │ ├── SkyBox.material │ │ ├── UpgradeMesh.bat │ │ └── skybox.zip │ ├── OverlayHelper.cpp │ ├── OverlayHelper.h │ ├── Plugins.cfg │ ├── PluginsDebug.cfg │ ├── PluginsDebugL.cfg │ ├── PluginsL.cfg │ ├── RunnableState.cpp │ ├── RunnableState.h │ ├── State.cpp │ ├── State.h │ ├── TransformationHistory.cpp │ ├── TransformationHistory.h │ ├── WinMain.cpp │ ├── readme.txt │ └── resources.cfg ├── PatchTest │ ├── PatchTest.sln │ ├── PatchTest.vcproj │ ├── PatchTest_vc8.sln │ ├── PatchTest_vc8.vcproj │ ├── PatchTest_vc9.vcproj │ └── main.cpp ├── PostgreSQLInterface │ ├── CMakeLists.txt │ ├── PostgreSQLInterface.cpp │ └── PostgreSQLInterface.h ├── RPC3 │ ├── CMakeLists.txt │ ├── RPC3.cpp │ ├── RPC3.h │ └── RPC3_Boost.h ├── RakVoice.cpp ├── RakVoice.h ├── SQLImageBuffer │ ├── SQLImageBuffer.vcproj │ └── main.cpp ├── SQLite3Plugin │ ├── Logger │ │ ├── ClientOnly │ │ │ ├── Optional │ │ │ │ ├── DX9_BackbufferGrabber.cpp │ │ │ │ ├── DX9_BackbufferGrabber.h │ │ │ │ ├── Ogre3D_DX9_BackbufferGrabber.cpp │ │ │ │ ├── Ogre3D_DX9_BackbufferGrabber.h │ │ │ │ ├── SQLiteClientLogger_PacketLogger.cpp │ │ │ │ ├── SQLiteClientLogger_PacketLogger.h │ │ │ │ ├── SQLiteClientLogger_RNSLogger.cpp │ │ │ │ └── SQLiteClientLogger_RNSLogger.h │ │ │ ├── SQLiteClientLoggerPlugin.cpp │ │ │ ├── SQLiteClientLoggerPlugin.h │ │ │ └── Samples │ │ │ │ ├── D3D9 │ │ │ │ ├── DXUT │ │ │ │ │ └── Optional │ │ │ │ │ │ └── directx.ico │ │ │ │ ├── Matrices.cpp │ │ │ │ ├── Matrices.manifest │ │ │ │ ├── Matrices.rc │ │ │ │ ├── Matrices_2005.sln │ │ │ │ ├── Matrices_2005.vcproj │ │ │ │ ├── Matrices_2008.sln │ │ │ │ ├── Matrices_2008.vcproj │ │ │ │ ├── Tut03_Matrices.jpg │ │ │ │ ├── readme.txt │ │ │ │ └── resource.h │ │ │ │ ├── Ogre3D │ │ │ │ ├── BspCollision.cpp │ │ │ │ ├── BspCollision_vc8.vcproj │ │ │ │ └── BspCollision_vc9.vcproj │ │ │ │ └── Simple │ │ │ │ ├── SQLiteClientLogger.vcproj │ │ │ │ └── SQLiteClientLoggerSample.cpp │ │ ├── SQLiteLoggerCommon.cpp │ │ ├── SQLiteLoggerCommon.h │ │ └── ServerOnly │ │ │ ├── SQLiteServerLogger.vcproj │ │ │ ├── SQLiteServerLoggerPlugin.cpp │ │ │ ├── SQLiteServerLoggerPlugin.h │ │ │ ├── SQLiteServerLoggerSample.cpp │ │ │ ├── jpeg_memory_dest.cpp │ │ │ └── jpeg_memory_dest.h │ ├── SQLite3ClientPlugin.cpp │ ├── SQLite3ClientPlugin.h │ ├── SQLite3Plugin.vcproj │ ├── SQLite3PluginCommon.cpp │ ├── SQLite3PluginCommon.h │ ├── SQLite3Sample.cpp │ ├── SQLite3ServerPlugin.cpp │ ├── SQLite3ServerPlugin.h │ ├── readme.txt │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── Swig │ ├── DLL_Swig │ │ ├── PostBuildDebug.bat │ │ ├── PostBuildRelease.bat │ │ ├── PreBuild.bat │ │ ├── RakNet.sln │ │ ├── RakNet.vcproj │ │ └── ReadMe.txt │ ├── InternalSwigItems │ │ ├── CopyFilesToInternalProject.bat │ │ ├── InternalSwigDLLBuildAndCopy.bat │ │ └── InternalSwigWindowsCSharpSample │ │ │ ├── InternalSwigTestApp.sln │ │ │ └── InternalSwigTestApp │ │ │ ├── CallBacksAndSubclasses │ │ │ ├── FileListTransferCB.cs │ │ │ ├── TestNetworkIDObjectSubClass.cs │ │ │ ├── UDPProxyClientResultHandlerCB.cs │ │ │ └── UDPProxyServerResultHandlerCB.cs │ │ │ ├── InternalSwigTestApp.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SwigFiles │ │ │ ├── AddressOrGUID.cs │ │ │ ├── BitStream.cs │ │ │ ├── ByteQueue.cs │ │ │ ├── Cell.cs │ │ │ ├── ColumnDescriptor.cs │ │ │ ├── CommandParserInterface.cs │ │ │ ├── ConnectionAttemptResult.cs │ │ │ ├── ConnectionGraph2.cs │ │ │ ├── ConnectionState.cs │ │ │ ├── DatabaseCellUpdate.cs │ │ │ ├── DatabaseFilter.cs │ │ │ ├── DefaultMessageIDTypes.cs │ │ │ ├── DirectoryDeltaTransfer.cs │ │ │ ├── FLP_Printf.cs │ │ │ ├── FileList.cs │ │ │ ├── FileListNode.cs │ │ │ ├── FileListNodeContext.cs │ │ │ ├── FileListProgress.cs │ │ │ ├── FileListTransfer.cs │ │ │ ├── FileListTransferCBInterface.cs │ │ │ ├── FileProgressStruct.cs │ │ │ ├── FilterQuery.cs │ │ │ ├── FullyConnectedMesh2.cs │ │ │ ├── IncrementalReadInterface.cs │ │ │ ├── LightweightDatabaseClient.cs │ │ │ ├── LightweightDatabaseServer.cs │ │ │ ├── LogCommandParser.cs │ │ │ ├── MessageFilter.cs │ │ │ ├── MultilistType.cs │ │ │ ├── NatPunchthroughClient.cs │ │ │ ├── NatPunchthroughDebugInterface.cs │ │ │ ├── NatPunchthroughDebugInterface_PacketLogger.cs │ │ │ ├── NatPunchthroughDebugInterface_Printf.cs │ │ │ ├── NatPunchthroughServer.cs │ │ │ ├── NatPunchthroughServerDebugInterface.cs │ │ │ ├── NatPunchthroughServerDebugInterface_PacketLogger.cs │ │ │ ├── NatPunchthroughServerDebugInterface_Printf.cs │ │ │ ├── NatTypeDetectionClient.cs │ │ │ ├── NatTypeDetectionServer.cs │ │ │ ├── NetworkIDManager.cs │ │ │ ├── NetworkIDObject.cs │ │ │ ├── OnFileStruct.cs │ │ │ ├── OutOfBandIdentifiers.cs │ │ │ ├── Packet.cs │ │ │ ├── PacketConsoleLogger.cs │ │ │ ├── PacketFileLogger.cs │ │ │ ├── PacketLogger.cs │ │ │ ├── PacketPriority.cs │ │ │ ├── PacketReliability.cs │ │ │ ├── PluginInterface2.cs │ │ │ ├── PluginReceiveResult.cs │ │ │ ├── PublicKey.cs │ │ │ ├── PublicKeyMode.cs │ │ │ ├── PunchthroughConfiguration.cs │ │ │ ├── RNSPerSecondMetrics.cs │ │ │ ├── RakNet.cs │ │ │ ├── RakNetBPlusTreeRow.cs │ │ │ ├── RakNetGUID.cs │ │ │ ├── RakNetListCell.cs │ │ │ ├── RakNetListCellPointer.cs │ │ │ ├── RakNetListColumnDescriptor.cs │ │ │ ├── RakNetListDatabaseCellUpdate.cs │ │ │ ├── RakNetListDatabaseFilter.cs │ │ │ ├── RakNetListFileListNode.cs │ │ │ ├── RakNetListFilterQuery.cs │ │ │ ├── RakNetListRakNetGUID.cs │ │ │ ├── RakNetListSortQuery.cs │ │ │ ├── RakNetListSystemAddress.cs │ │ │ ├── RakNetListTableRow.cs │ │ │ ├── RakNetListUnsignedInt.cs │ │ │ ├── RakNetListUnsignedShort.cs │ │ │ ├── RakNetPINVOKE.cs │ │ │ ├── RakNetPageRow.cs │ │ │ ├── RakNetSocket.cs │ │ │ ├── RakNetStatistics.cs │ │ │ ├── RakNetworkFactory.cs │ │ │ ├── RakPeer.cs │ │ │ ├── RakPeerInterface.cs │ │ │ ├── RakString.cs │ │ │ ├── ReadyEvent.cs │ │ │ ├── ReadyEventSystemStatus.cs │ │ │ ├── RemoteSystemIndex.cs │ │ │ ├── Router2.cs │ │ │ ├── Router2DebugInterface.cs │ │ │ ├── Row.cs │ │ │ ├── RowUpdateMode.cs │ │ │ ├── SWIGTYPE_p_Cell.cs │ │ │ ├── SWIGTYPE_p_ColumnDescriptor.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_Cell_p_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_Cell_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_ColumnDescriptor_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__Cell_p_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__Cell_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__ColumnDescriptor_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__FilterQuery_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__Row_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DataStructures__SortQuery_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_DatabaseFilter_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_FilterQuery_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_Row_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_SortQuery_t.cs │ │ │ ├── SWIGTYPE_p_DataStructures__Table__Row.cs │ │ │ ├── SWIGTYPE_p_FilterQuery.cs │ │ │ ├── SWIGTYPE_p_RakNet__FileListTransferCBInterface__FileProgressStruct.cs │ │ │ ├── SWIGTYPE_p_RakNet__FileListTransferCBInterface__OnFileStruct.cs │ │ │ ├── SWIGTYPE_p_Row.cs │ │ │ ├── SWIGTYPE_p_SortQuery.cs │ │ │ ├── SWIGTYPE_p_double.cs │ │ │ ├── SWIGTYPE_p_p_Cell.cs │ │ │ ├── SWIGTYPE_p_p_DataStructures__Table__Row.cs │ │ │ ├── SWIGTYPE_p_unsigned_char.cs │ │ │ ├── SWIGTYPE_p_unsigned_int.cs │ │ │ ├── SWIGTYPE_p_unsigned_long_long.cs │ │ │ ├── SWIGTYPE_p_unsigned_short.cs │ │ │ ├── SimpleMutex.cs │ │ │ ├── SocketDescriptor.cs │ │ │ ├── SortQuery.cs │ │ │ ├── StartupResult.cs │ │ │ ├── SystemAddress.cs │ │ │ ├── Table.cs │ │ │ ├── TeamBalancer.cs │ │ │ ├── ThreadsafePacketLogger.cs │ │ │ ├── TransportInterface.cs │ │ │ ├── UDPForwarder.cs │ │ │ ├── UDPForwarderResult.cs │ │ │ ├── UDPProxyClient.cs │ │ │ ├── UDPProxyClientResultHandler.cs │ │ │ ├── UDPProxyCoordinator.cs │ │ │ ├── UDPProxyServer.cs │ │ │ ├── UDPProxyServerResultHandler.cs │ │ │ ├── UnsignedIntPointer.cs │ │ │ ├── UnsignedShortPointer.cs │ │ │ └── uint24_t.cs │ │ │ └── TestMain.cs │ ├── MakeSwig.bat │ ├── MakeSwig.sh │ ├── MakeSwigWithExtras.bat │ ├── MakeSwigWithExtras.sh │ ├── Swig1.3.4InterfaceFiles │ │ ├── RakNet.i │ │ ├── RakNetCSharpCPlusIncludes.i │ │ ├── RakNetCSharpExtends.i │ │ ├── RakNetCSharpIgnores.i │ │ ├── RakNetCSharpMethodModifiers.i │ │ ├── RakNetCSharpPreprocessor.i │ │ ├── RakNetCSharpRenames.i │ │ ├── RakNetCSharpSwigIncludes.i │ │ ├── RakNetCSharpTemplateDefines.i │ │ ├── RakNetCSharpTypeMaps.i │ │ ├── RakNetStructsAndClasses.i │ │ └── arrays_csharp.i │ ├── SwigInterfaceFiles │ │ ├── RakNet.i │ │ ├── RakNetCSharpCPlusIncludes.i │ │ ├── RakNetCSharpExtends.i │ │ ├── RakNetCSharpIgnores.i │ │ ├── RakNetCSharpMethodModifiers.i │ │ ├── RakNetCSharpPreprocessor.i │ │ ├── RakNetCSharpRenames.i │ │ ├── RakNetCSharpSwigIncludes.i │ │ ├── RakNetCSharpTemplateDefines.i │ │ ├── RakNetCSharpTypeMaps.i │ │ ├── RakNetStructsAndClasses.i │ │ ├── RakNetSwigMacros.i │ │ └── arrays_csharp.i │ ├── SwigLinuxCSharpSample │ │ ├── AddressOrGUID.cs │ │ ├── BitStream.cs │ │ ├── ByteQueue.cs │ │ ├── Cell.cs │ │ ├── ColumnDescriptor.cs │ │ ├── CommandParserInterface.cs │ │ ├── ConnectionAttemptResult.cs │ │ ├── ConnectionGraph2.cs │ │ ├── ConnectionState.cs │ │ ├── DefaultMessageIDTypes.cs │ │ ├── DirectoryDeltaTransfer.cs │ │ ├── FLP_Printf.cs │ │ ├── FileList.cs │ │ ├── FileListNode.cs │ │ ├── FileListNodeContext.cs │ │ ├── FileListProgress.cs │ │ ├── FileListTransfer.cs │ │ ├── FileListTransferCBInterface.cs │ │ ├── FileProgressStruct.cs │ │ ├── FilterQuery.cs │ │ ├── FullyConnectedMesh2.cs │ │ ├── IncrementalReadInterface.cs │ │ ├── LogCommandParser.cs │ │ ├── MessageFilter.cs │ │ ├── MultilistType.cs │ │ ├── NatPunchthroughClient.cs │ │ ├── NatPunchthroughDebugInterface.cs │ │ ├── NatPunchthroughDebugInterface_PacketLogger.cs │ │ ├── NatPunchthroughDebugInterface_Printf.cs │ │ ├── NatPunchthroughServer.cs │ │ ├── NatPunchthroughServerDebugInterface.cs │ │ ├── NatPunchthroughServerDebugInterface_PacketLogger.cs │ │ ├── NatPunchthroughServerDebugInterface_Printf.cs │ │ ├── NatTypeDetectionClient.cs │ │ ├── NatTypeDetectionServer.cs │ │ ├── NetworkIDManager.cs │ │ ├── NetworkIDObject.cs │ │ ├── OnFileStruct.cs │ │ ├── OutOfBandIdentifiers.cs │ │ ├── Packet.cs │ │ ├── PacketConsoleLogger.cs │ │ ├── PacketFileLogger.cs │ │ ├── PacketLogger.cs │ │ ├── PacketPriority.cs │ │ ├── PacketReliability.cs │ │ ├── PluginInterface2.cs │ │ ├── PluginReceiveResult.cs │ │ ├── PublicKey.cs │ │ ├── PublicKeyMode.cs │ │ ├── PunchthroughConfiguration.cs │ │ ├── RNSPerSecondMetrics.cs │ │ ├── RakNet.cs │ │ ├── RakNetBPlusTreeRow.cs │ │ ├── RakNetGUID.cs │ │ ├── RakNetListCell.cs │ │ ├── RakNetListCellPointer.cs │ │ ├── RakNetListColumnDescriptor.cs │ │ ├── RakNetListFileListNode.cs │ │ ├── RakNetListFilterQuery.cs │ │ ├── RakNetListRakNetGUID.cs │ │ ├── RakNetListSortQuery.cs │ │ ├── RakNetListSystemAddress.cs │ │ ├── RakNetListTableRow.cs │ │ ├── RakNetListUnsignedInt.cs │ │ ├── RakNetListUnsignedShort.cs │ │ ├── RakNetPINVOKE.cs │ │ ├── RakNetPageRow.cs │ │ ├── RakNetSocket.cs │ │ ├── RakNetStatistics.cs │ │ ├── RakPeer.cs │ │ ├── RakPeerInterface.cs │ │ ├── RakString.cs │ │ ├── ReadMe.txt │ │ ├── ReadyEvent.cs │ │ ├── ReadyEventSystemStatus.cs │ │ ├── RemoteSystemIndex.cs │ │ ├── Router2.cs │ │ ├── Router2DebugInterface.cs │ │ ├── Row.cs │ │ ├── SWIGTYPE_p_double.cs │ │ ├── SWIGTYPE_p_unsigned_char.cs │ │ ├── SWIGTYPE_p_unsigned_int.cs │ │ ├── SWIGTYPE_p_unsigned_long_long.cs │ │ ├── SWIGTYPE_p_unsigned_short.cs │ │ ├── SimpleMutex.cs │ │ ├── SocketDescriptor.cs │ │ ├── SortQuery.cs │ │ ├── StartupResult.cs │ │ ├── SystemAddress.cs │ │ ├── Table.cs │ │ ├── TeamBalancer.cs │ │ ├── TestMain.cs │ │ ├── ThreadsafePacketLogger.cs │ │ ├── TransportInterface.cs │ │ ├── UDPForwarder.cs │ │ ├── UDPForwarderResult.cs │ │ ├── UDPProxyClient.cs │ │ ├── UDPProxyClientResultHandler.cs │ │ ├── UDPProxyCoordinator.cs │ │ ├── UDPProxyServer.cs │ │ ├── UDPProxyServerResultHandler.cs │ │ ├── UnsignedIntPointer.cs │ │ ├── UnsignedShortPointer.cs │ │ └── uint24_t.cs │ └── SwigWindowsCSharpSample │ │ ├── SwigTestApp.sln │ │ └── SwigTestApp │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SwigFiles │ │ ├── AddressOrGUID.cs │ │ ├── BitStream.cs │ │ ├── ByteQueue.cs │ │ ├── Cell.cs │ │ ├── ColumnDescriptor.cs │ │ ├── CommandParserInterface.cs │ │ ├── ConnectionAttemptResult.cs │ │ ├── ConnectionGraph2.cs │ │ ├── ConnectionState.cs │ │ ├── DefaultMessageIDTypes.cs │ │ ├── DirectoryDeltaTransfer.cs │ │ ├── DownloadCompleteStruct.cs │ │ ├── FLP_Printf.cs │ │ ├── FileList.cs │ │ ├── FileListNode.cs │ │ ├── FileListNodeContext.cs │ │ ├── FileListProgress.cs │ │ ├── FileListTransfer.cs │ │ ├── FileListTransferCBInterface.cs │ │ ├── FileProgressStruct.cs │ │ ├── FilterQuery.cs │ │ ├── FullyConnectedMesh2.cs │ │ ├── IncrementalReadInterface.cs │ │ ├── LogCommandParser.cs │ │ ├── MessageFilter.cs │ │ ├── MultilistType.cs │ │ ├── NatPunchthroughClient.cs │ │ ├── NatPunchthroughDebugInterface.cs │ │ ├── NatPunchthroughDebugInterface_PacketLogger.cs │ │ ├── NatPunchthroughDebugInterface_Printf.cs │ │ ├── NatPunchthroughServer.cs │ │ ├── NatPunchthroughServerDebugInterface.cs │ │ ├── NatPunchthroughServerDebugInterface_PacketLogger.cs │ │ ├── NatPunchthroughServerDebugInterface_Printf.cs │ │ ├── NatTypeDetectionClient.cs │ │ ├── NatTypeDetectionServer.cs │ │ ├── NetworkIDManager.cs │ │ ├── NetworkIDObject.cs │ │ ├── OnFileStruct.cs │ │ ├── OutOfBandIdentifiers.cs │ │ ├── Packet.cs │ │ ├── PacketConsoleLogger.cs │ │ ├── PacketFileLogger.cs │ │ ├── PacketLogger.cs │ │ ├── PacketPriority.cs │ │ ├── PacketReliability.cs │ │ ├── PluginInterface2.cs │ │ ├── PluginReceiveResult.cs │ │ ├── PublicKey.cs │ │ ├── PublicKeyMode.cs │ │ ├── PunchthroughConfiguration.cs │ │ ├── RNSPerSecondMetrics.cs │ │ ├── RakNet.cs │ │ ├── RakNetBPlusTreeRow.cs │ │ ├── RakNetGUID.cs │ │ ├── RakNetListCell.cs │ │ ├── RakNetListCellPointer.cs │ │ ├── RakNetListColumnDescriptor.cs │ │ ├── RakNetListFileListNode.cs │ │ ├── RakNetListFilterQuery.cs │ │ ├── RakNetListRakNetGUID.cs │ │ ├── RakNetListRakNetSmartPtrRakNetSocket.cs │ │ ├── RakNetListRakString.cs │ │ ├── RakNetListSortQuery.cs │ │ ├── RakNetListSystemAddress.cs │ │ ├── RakNetListTableRow.cs │ │ ├── RakNetListUnsignedInt.cs │ │ ├── RakNetListUnsignedShort.cs │ │ ├── RakNetPINVOKE.cs │ │ ├── RakNetPageRow.cs │ │ ├── RakNetSocket.cs │ │ ├── RakNetStatistics.cs │ │ ├── RakPeer.cs │ │ ├── RakPeerInterface.cs │ │ ├── RakString.cs │ │ ├── ReadyEvent.cs │ │ ├── ReadyEventSystemStatus.cs │ │ ├── ReferenceCounter.cs │ │ ├── RemoteSystemIndex.cs │ │ ├── Router2.cs │ │ ├── Router2DebugInterface.cs │ │ ├── Row.cs │ │ ├── SWIGTYPE_p_DataStructures__ListT_RakNetSmartPtrT_RakNet__RakNetSocket_t_t.cs │ │ ├── SWIGTYPE_p_DataStructures__OrderedListT_RakNet__RakNetGUID_RakNet__RakNetGUID_t.cs │ │ ├── SWIGTYPE_p_RakNet__FileListTransferCBInterface__DownloadCompleteStruct.cs │ │ ├── SWIGTYPE_p_RakNet__RakNetSmartPtrT_RakNet__RakNetSocket_t.cs │ │ ├── SWIGTYPE_p_RakNet__SystemAddress__In6OrIn4.cs │ │ ├── SWIGTYPE_p_RakNet__UDPForwarder__ForwardEntry.cs │ │ ├── SWIGTYPE_p_RakNet__UDPForwarder__SrcAndDest.cs │ │ ├── SWIGTYPE_p_RakNet__UDPProxyCoordinator__ForwardingRequest.cs │ │ ├── SWIGTYPE_p_RakNet__UDPProxyCoordinator__SenderAndTargetAddress.cs │ │ ├── SWIGTYPE_p_RakNet__UDPProxyCoordinator__ServerWithPing.cs │ │ ├── SWIGTYPE_p_double.cs │ │ ├── SWIGTYPE_p_unsigned_char.cs │ │ ├── SWIGTYPE_p_unsigned_int.cs │ │ ├── SWIGTYPE_p_unsigned_long_long.cs │ │ ├── SWIGTYPE_p_unsigned_short.cs │ │ ├── SWIGTYPE_p_void.cs │ │ ├── SWIGTYPE_p_wchar_t.cs │ │ ├── SimpleMutex.cs │ │ ├── SocketDescriptor.cs │ │ ├── SortQuery.cs │ │ ├── StartupResult.cs │ │ ├── SystemAddress.cs │ │ ├── Table.cs │ │ ├── TeamBalancer.cs │ │ ├── ThreadsafePacketLogger.cs │ │ ├── TransportInterface.cs │ │ ├── UDPForwarder.cs │ │ ├── UDPForwarderResult.cs │ │ ├── UDPProxyClient.cs │ │ ├── UDPProxyClientResultHandler.cs │ │ ├── UDPProxyCoordinator.cs │ │ ├── UDPProxyServer.cs │ │ ├── UDPProxyServerResultHandler.cs │ │ ├── UnsignedIntPointer.cs │ │ ├── UnsignedShortPointer.cs │ │ └── uint24_t.cs │ │ ├── SwigTestApp.csproj │ │ └── TestMain.cs ├── XML │ ├── CMakeLists.txt │ ├── xmlParser.cpp │ └── xmlParser.h ├── bzip2-1.0.6 │ ├── CHANGES │ ├── LICENSE │ ├── Makefile │ ├── Makefile-libbz2_so │ ├── README │ ├── README.COMPILATION.PROBLEMS │ ├── README.XML.STUFF │ ├── blocksort.c │ ├── bz-common.xsl │ ├── bz-fo.xsl │ ├── bz-html.xsl │ ├── bzdiff │ ├── bzdiff.1 │ ├── bzgrep │ ├── bzgrep.1 │ ├── bzip.css │ ├── bzip2.1 │ ├── bzip2.1.preformatted │ ├── bzip2.c │ ├── bzip2.txt │ ├── bzip2recover.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── bzmore │ ├── bzmore.1 │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── dlltest.c │ ├── dlltest.dsp │ ├── entities.xml │ ├── format.pl │ ├── huffman.c │ ├── libbz2.def │ ├── libbz2.dsp │ ├── makefile.msc │ ├── manual.html │ ├── manual.pdf │ ├── manual.ps │ ├── manual.xml │ ├── mk251.c │ ├── randtable.c │ ├── sample1.bz2 │ ├── sample1.ref │ ├── sample2.bz2 │ ├── sample2.ref │ ├── sample3.bz2 │ ├── sample3.ref │ ├── spewG.c │ ├── unzcrash.c │ ├── words0 │ ├── words1 │ ├── words2 │ ├── words3 │ └── xmlproc.sh ├── jpeg-7 │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.txt │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── filelist.txt │ ├── install-sh │ ├── install.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.txt │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdosabcc.obj │ ├── jdosamsc.obj │ ├── jdosaobj.txt │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.map │ ├── libjpeg.txt │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeadsw.vc6 │ ├── makeasln.vc9 │ ├── makecdep.vc6 │ ├── makecdsp.vc6 │ ├── makecmak.vc6 │ ├── makecvcp.vc9 │ ├── makeddep.vc6 │ ├── makeddsp.vc6 │ ├── makedmak.vc6 │ ├── makedvcp.vc9 │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makejdep.vc6 │ ├── makejdsp.vc6 │ ├── makejdsw.vc6 │ ├── makejmak.vc6 │ ├── makejsln.vc9 │ ├── makejvcp.vc9 │ ├── makeproj.mac │ ├── makerdep.vc6 │ ├── makerdsp.vc6 │ ├── makermak.vc6 │ ├── makervcp.vc9 │ ├── maketdep.vc6 │ ├── maketdsp.vc6 │ ├── maketmak.vc6 │ ├── maketvcp.vc9 │ ├── makewdep.vc6 │ ├── makewdsp.vc6 │ ├── makewmak.vc6 │ ├── makewvcp.vc9 │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── memsrc.c │ ├── missing │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── readme.dos │ ├── structure.txt │ ├── testimg.bmp │ ├── testimg.jpg │ ├── testimg.ppm │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.txt │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── miniupnpc-1.5 │ ├── Changelog.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── Makefile.mingw │ ├── README │ ├── VERSION │ ├── bsdqueue.h │ ├── codelength.h │ ├── connecthostport.c │ ├── connecthostport.h │ ├── declspec.h │ ├── external-ip.sh │ ├── igd_desc_parse.c │ ├── igd_desc_parse.h │ ├── java │ │ ├── JavaBridgeTest.java │ │ └── testjava.sh │ ├── man3 │ │ └── miniupnpc.3 │ ├── mingw32make.bat │ ├── minisoap.c │ ├── minisoap.h │ ├── minissdpc.c │ ├── minissdpc.h │ ├── miniupnpc.c │ ├── miniupnpc.def │ ├── miniupnpc.h │ ├── miniupnpcmodule.c │ ├── miniupnpcstrings.h.in │ ├── miniwget.c │ ├── miniwget.h │ ├── minixml.c │ ├── minixml.h │ ├── minixmlvalid.c │ ├── msvc │ │ ├── miniupnpc.sln │ │ ├── miniupnpc.vcproj │ │ └── upnpc-static.vcproj │ ├── pymoduletest.py │ ├── setup.py │ ├── setupmingw32.py │ ├── testigddescparse.c │ ├── testminiwget.c │ ├── testminixml.c │ ├── testupnpigd.py │ ├── testupnpreplyparse.c │ ├── updateminiupnpcstrings.sh │ ├── upnpc.c │ ├── upnpcommands.c │ ├── upnpcommands.h │ ├── upnperrors.c │ ├── upnperrors.h │ ├── upnpreplyparse.c │ ├── upnpreplyparse.h │ └── wingenminiupnpcstrings.c ├── openssl-1.0.0d │ ├── OpenSSLhelp.chm │ ├── bin │ │ ├── 4758cca.dll │ │ ├── CA.pl │ │ ├── PEM │ │ │ ├── ca-cert.srl │ │ │ ├── ca-key.pem │ │ │ ├── ca-req.pem │ │ │ ├── cert.pem │ │ │ ├── client.pem │ │ │ ├── demoCA │ │ │ │ ├── cacert.pem │ │ │ │ ├── index.txt │ │ │ │ ├── private │ │ │ │ │ └── cakey.pem │ │ │ │ └── serial │ │ │ ├── dh1024.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dsa-ca.pem │ │ │ ├── dsa-pca.pem │ │ │ ├── dsa1024.pem │ │ │ ├── dsa512.pem │ │ │ ├── dsap.pem │ │ │ ├── pca-cert.srl │ │ │ ├── pca-key.pem │ │ │ ├── pca-req.pem │ │ │ ├── privkey.pem │ │ │ ├── req.pem │ │ │ ├── rsa8192.pem │ │ │ ├── s1024key.pem │ │ │ ├── s1024req.pem │ │ │ ├── s512-key.pem │ │ │ ├── s512-req.pem │ │ │ ├── server.pem │ │ │ ├── server.srl │ │ │ ├── server2.pem │ │ │ ├── set │ │ │ │ ├── set-g-ca.pem │ │ │ │ ├── set-m-ca.pem │ │ │ │ ├── set_b_ca.pem │ │ │ │ ├── set_c_ca.pem │ │ │ │ ├── set_d_ct.pem │ │ │ │ └── set_root.pem │ │ │ └── testCA.pem │ │ ├── aep.dll │ │ ├── atalla.dll │ │ ├── bftest.exe │ │ ├── bntest.exe │ │ ├── capi.dll │ │ ├── casttest.exe │ │ ├── chil.dll │ │ ├── cswift.dll │ │ ├── destest.exe │ │ ├── dhtest.exe │ │ ├── dsatest.exe │ │ ├── ecdhtest.exe │ │ ├── ecdsatest.exe │ │ ├── ectest.exe │ │ ├── enginetest.exe │ │ ├── evp_test.exe │ │ ├── exptest.exe │ │ ├── gmp.dll │ │ ├── gost.dll │ │ ├── hmactest.exe │ │ ├── ideatest.exe │ │ ├── libeay32.dll │ │ ├── md4test.exe │ │ ├── md5test.exe │ │ ├── mdc2test.exe │ │ ├── nuron.dll │ │ ├── openssl.cfg │ │ ├── openssl.exe │ │ ├── padlock.dll │ │ ├── randtest.exe │ │ ├── rc2test.exe │ │ ├── rc4test.exe │ │ ├── rmdtest.exe │ │ ├── rsa_test.exe │ │ ├── sha1test.exe │ │ ├── sha256t.exe │ │ ├── sha512t.exe │ │ ├── shatest.exe │ │ ├── ssleay32.dll │ │ ├── ssltest.exe │ │ ├── sureware.dll │ │ ├── ubsec.dll │ │ └── wp_test.exe │ ├── changes.txt │ ├── exp │ │ ├── 4758cca.exp │ │ ├── aep.exp │ │ ├── atalla.exp │ │ ├── capi.exp │ │ ├── chil.exp │ │ ├── cswift.exp │ │ ├── gmp.exp │ │ ├── gost.exp │ │ ├── libeay32.exp │ │ ├── nuron.exp │ │ ├── padlock.exp │ │ ├── ssleay32.exp │ │ ├── sureware.exp │ │ └── ubsec.exp │ ├── faq.txt │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── applink.c │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── lib │ │ ├── 4758cca.lib │ │ ├── aep.lib │ │ ├── atalla.lib │ │ ├── capi.lib │ │ ├── chil.lib │ │ ├── cswift.lib │ │ ├── gmp.lib │ │ ├── gost.lib │ │ ├── libeay32.lib │ │ ├── nuron.lib │ │ ├── padlock.lib │ │ ├── ssleay32.lib │ │ ├── sureware.lib │ │ └── ubsec.lib │ ├── libeay32.dll │ ├── libssl32.dll │ ├── license.txt │ ├── news.txt │ ├── readme.txt │ └── ssleay32.dll ├── portaudio_v18_1 │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── Makefile.in │ ├── Makefile.linux │ ├── Makefile.mingw │ ├── Makefile.solaris │ ├── README.txt │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── docs │ │ ├── index.html │ │ ├── latency.html │ │ ├── pa_drivermodel.c.txt │ │ ├── pa_drivermodel.h.txt │ │ ├── pa_impl_guide.html │ │ ├── pa_impl_startstop.html │ │ ├── pa_tut_asio.html │ │ ├── pa_tut_callback.html │ │ ├── pa_tut_devs.html │ │ ├── pa_tut_explore.html │ │ ├── pa_tut_init.html │ │ ├── pa_tut_mac.html │ │ ├── pa_tut_mac_osx.html │ │ ├── pa_tut_open.html │ │ ├── pa_tut_oss.html │ │ ├── pa_tut_over.html │ │ ├── pa_tut_pc.html │ │ ├── pa_tut_run.html │ │ ├── pa_tut_rw.html │ │ ├── pa_tut_term.html │ │ ├── pa_tut_util.html │ │ ├── pa_tutorial.html │ │ ├── portaudio_h.txt │ │ ├── portaudio_icmc2001.pdf │ │ ├── proposals.html │ │ └── releases.html │ ├── fixdir.bat │ ├── fixfile.bat │ ├── index.html │ ├── install-sh │ ├── pa_asio │ │ ├── Callback_adaptation_.pdf │ │ ├── pa_asio.cpp │ │ ├── pa_asio.pdf │ │ └── readme_asio_sdk_patch.txt │ ├── pa_beos │ │ ├── PlaybackNode.h │ │ ├── pa_beos_mk.cc │ │ └── playbacknode.cc │ ├── pa_common │ │ ├── pa_convert.c │ │ ├── pa_host.h │ │ ├── pa_lib.c │ │ ├── pa_trace.c │ │ ├── pa_trace.h │ │ └── portaudio.h │ ├── pa_dll_switch │ │ ├── PaDllEntry.h │ │ ├── letter_from_tim_010817.txt │ │ ├── loadPA_DLL.cpp │ │ ├── pa_lib.c │ │ └── portaudio.h │ ├── pa_mac │ │ └── pa_mac.c │ ├── pa_mac_core │ │ ├── notes.txt │ │ └── pa_mac_core.c │ ├── pa_sgi │ │ ├── Makefile │ │ ├── pa_sgi.c │ │ ├── pthread-Makefile │ │ └── pthread-pa_sgi.c │ ├── pa_tests │ │ ├── debug_convert.c │ │ ├── debug_dither_calc.c │ │ ├── debug_dual.c │ │ ├── debug_multi_in.c │ │ ├── debug_multi_out.c │ │ ├── debug_record.c │ │ ├── debug_record_reuse.c │ │ ├── debug_sine.c │ │ ├── debug_sine_amp.c │ │ ├── debug_sine_formats.c │ │ ├── debug_sine_getchar.c │ │ ├── debug_srate.c │ │ ├── debug_test1.c │ │ ├── pa_devs.c │ │ ├── pa_fuzz.c │ │ ├── pa_minlat.c │ │ ├── paqa_devs.c │ │ ├── paqa_errs.c │ │ ├── patest1.c │ │ ├── patest_buffer.c │ │ ├── patest_clip.c │ │ ├── patest_dither.c │ │ ├── patest_hang.c │ │ ├── patest_latency.c │ │ ├── patest_leftright.c │ │ ├── patest_longsine.c │ │ ├── patest_many.c │ │ ├── patest_maxsines.c │ │ ├── patest_mono.c │ │ ├── patest_multi_sine.c │ │ ├── patest_pink.c │ │ ├── patest_record.c │ │ ├── patest_ringmix.c │ │ ├── patest_saw.c │ │ ├── patest_sine.c │ │ ├── patest_sine8.c │ │ ├── patest_sine_formats.c │ │ ├── patest_sine_time.c │ │ ├── patest_stop.c │ │ ├── patest_sync.c │ │ ├── patest_toomanysines.c │ │ ├── patest_two_rates.c │ │ ├── patest_underflow.c │ │ └── patest_wire.c │ ├── pa_unix_oss │ │ ├── Makefile │ │ ├── Makefile_freebsd │ │ ├── low_latency_tip.txt │ │ ├── pa_unix.c │ │ ├── pa_unix.h │ │ ├── pa_unix_oss.c │ │ ├── pa_unix_solaris.c │ │ └── recplay.c │ ├── pa_win_ds │ │ ├── dsound_wrapper.c │ │ ├── dsound_wrapper.h │ │ ├── pa_dsound.c │ │ └── portaudio.def │ ├── pa_win_wmme │ │ ├── Makefile.cygwin │ │ └── pa_win_wmme.c │ ├── pablio │ │ ├── README.txt │ │ ├── pablio.c │ │ ├── pablio.def │ │ ├── pablio.h │ │ ├── ringbuffer.c │ │ ├── ringbuffer.h │ │ ├── test_rw.c │ │ ├── test_rw_echo.c │ │ ├── test_w_saw.c │ │ └── test_w_saw8.c │ └── testcvs │ │ └── changeme.txt └── speex-1.1.12 │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.TI-DSP │ ├── README.blackfin │ ├── README.symbian │ ├── Speex.kdevelop │ ├── Speex.spec │ ├── Speex.spec.in │ ├── TODO │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ ├── Makefile.am │ └── Makefile.in │ ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── speex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── pcm_wrapper.h │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h.in │ │ ├── speex_echo.h │ │ ├── speex_header.h │ │ ├── speex_jitter.h │ │ ├── speex_preprocess.h │ │ ├── speex_stereo.h │ │ └── speex_types.h │ ├── install-sh │ ├── libspeex │ ├── Makefile.am │ ├── Makefile.in │ ├── _kiss_fft_guts.h │ ├── arch.h │ ├── bits.c │ ├── cb_search.c │ ├── cb_search.h │ ├── cb_search_arm4.h │ ├── cb_search_bfin.h │ ├── cb_search_sse.h │ ├── exc_10_16_table.c │ ├── exc_10_32_table.c │ ├── exc_20_32_table.c │ ├── exc_5_256_table.c │ ├── exc_5_64_table.c │ ├── exc_8_128_table.c │ ├── fftwrap.c │ ├── fftwrap.h │ ├── filters.c │ ├── filters.h │ ├── filters_arm4.h │ ├── filters_bfin.h │ ├── filters_sse.h │ ├── fixed_arm4.h │ ├── fixed_arm5e.h │ ├── fixed_bfin.h │ ├── fixed_debug.h │ ├── fixed_generic.h │ ├── gain_table.c │ ├── gain_table_lbr.c │ ├── hexc_10_32_table.c │ ├── hexc_table.c │ ├── high_lsp_tables.c │ ├── jitter.c │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ ├── kiss_fftr.h │ ├── lbr_48k_tables.c │ ├── lpc.c │ ├── lpc.h │ ├── lpc_bfin.h │ ├── lsp.c │ ├── lsp.h │ ├── lsp_tables_nb.c │ ├── ltp.c │ ├── ltp.h │ ├── ltp_arm4.h │ ├── ltp_bfin.h │ ├── ltp_sse.h │ ├── math_approx.c │ ├── math_approx.h │ ├── mdf.c │ ├── misc.c │ ├── misc.h │ ├── misc_bfin.h │ ├── modes.c │ ├── modes.h │ ├── nb_celp.c │ ├── nb_celp.h │ ├── pcm_wrapper.c │ ├── preprocess.c │ ├── pseudofloat.h │ ├── quant_lsp.c │ ├── quant_lsp.h │ ├── sb_celp.c │ ├── sb_celp.h │ ├── smallft.c │ ├── smallft.h │ ├── speex.c │ ├── speex_callbacks.c │ ├── speex_header.c │ ├── stack_alloc.h │ ├── stereo.c │ ├── vbr.c │ ├── vbr.h │ ├── vorbis_psy.c │ ├── vorbis_psy.h │ ├── vq.c │ ├── vq.h │ ├── vq_arm4.h │ ├── vq_bfin.h │ └── vq_sse.h │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── speex.m4 │ ├── speex.pc.in │ ├── src │ ├── Makefile.am │ ├── getopt.c │ ├── getopt1.c │ ├── getopt_win.h │ ├── makefile.in │ ├── speexdec.1 │ ├── speexdec.c │ ├── speexenc.1 │ ├── speexenc.c │ ├── wav_io.c │ ├── wav_io.h │ ├── wave_out.c │ └── wave_out.h │ ├── symbian │ ├── Makefile.am │ ├── Makefile.in │ ├── bld.inf │ ├── config.h │ └── speex.mmp │ ├── ti │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── speex_C54_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C54_test.cmd │ │ └── speex_C54_test.pjt │ ├── speex_C55_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C55_test.cmd │ │ └── speex_C55_test.pjt │ ├── speex_C64_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C64_test.cmd │ │ └── speex_C64_test.pjt │ ├── testenc-TI-C5x.c │ ├── testenc-TI-C64x.c │ └── user_misc.h │ └── win32 │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── libspeex │ ├── Makefile.am │ ├── Makefile.in │ ├── libspeex.dsp │ ├── libspeex.dsw │ ├── libspeex.sln │ ├── libspeex.vcproj │ ├── libspeex_dynamic.dsp │ ├── libspeex_dynamic.vcproj │ └── speex.def │ ├── speex.iss │ ├── speexdec │ ├── Makefile.am │ ├── Makefile.in │ ├── speexdec.dsp │ └── speexdec.dsw │ └── speexenc │ ├── Makefile.am │ ├── Makefile.in │ ├── speexenc.dsp │ └── speexenc.dsw ├── Help ├── 0SleepTimer.jpg ├── 0SleepTimerSmall.jpg ├── 30SleepTimer.jpg ├── 30SleepTimerSmall.jpg ├── AutopatcherVideo.htm ├── CSharpBuildConfiguration.jpg ├── DirectoryServerListing.jpg ├── Doxygen │ ├── Manual.chm │ └── html │ │ ├── AutopatcherClient_8h.html │ │ ├── AutopatcherMySQLRepository_8h.html │ │ ├── AutopatcherPostgreRepository_8h.html │ │ ├── AutopatcherRepositoryInterface_8h.html │ │ ├── AutopatcherServer_8h.html │ │ ├── BitStream_8h.html │ │ ├── CloudClient_8h.html │ │ ├── CloudServer_8h.html │ │ ├── CommandParserInterface_8h.html │ │ ├── ConnectionGraph2_8h.html │ │ ├── ConsoleServer_8h.html │ │ ├── DS__BPlusTree_8h.html │ │ ├── DS__BinarySearchTree_8h.html │ │ ├── DS__BytePool_8h.html │ │ ├── DS__ByteQueue_8h.html │ │ ├── DS__Heap_8h.html │ │ ├── DS__HuffmanEncodingTreeFactory_8h.html │ │ ├── DS__HuffmanEncodingTreeNode_8h.html │ │ ├── DS__HuffmanEncodingTree_8h.html │ │ ├── DS__LinkedList_8h.html │ │ ├── DS__List_8h.html │ │ ├── DS__Map_8h.html │ │ ├── DS__MemoryPool_8h.html │ │ ├── DS__Multilist_8h.html │ │ ├── DS__OrderedChannelHeap_8h.html │ │ ├── DS__OrderedList_8h.html │ │ ├── DS__QueueLinkedList_8h.html │ │ ├── DS__Queue_8h.html │ │ ├── DS__RangeList_8h.html │ │ ├── DS__Table_8h.html │ │ ├── DS__ThreadsafeAllocatingQueue_8h.html │ │ ├── DS__Tree_8h.html │ │ ├── DS__WeightedGraph_8h.html │ │ ├── DataCompressor_8h.html │ │ ├── DirectoryDeltaTransfer_8h.html │ │ ├── DynDNS_8h.html │ │ ├── EmailSender_8h.html │ │ ├── EpochTimeToString_8h.html │ │ ├── FileListNodeContext_8h.html │ │ ├── FileListTransferCBInterface_8h.html │ │ ├── FileListTransfer_8h.html │ │ ├── FileList_8h.html │ │ ├── FileOperations_8h.html │ │ ├── FormatString_8h.html │ │ ├── FullyConnectedMesh2_8h.html │ │ ├── GetTime_8h.html │ │ ├── HTTPConnection_8h.html │ │ ├── InternalPacket_8h.html │ │ ├── LogCommandParser_8h.html │ │ ├── MTUSize_8h.html │ │ ├── MessageFilter_8h.html │ │ ├── MessageIdentifiers_8h.html │ │ ├── NatPunchthroughClient_8h.html │ │ ├── NatPunchthroughServer_8h.html │ │ ├── NatTypeDetectionClient_8h.html │ │ ├── NatTypeDetectionServer_8h.html │ │ ├── NetworkIDManager_8h.html │ │ ├── NetworkIDObject_8h.html │ │ ├── PacketConsoleLogger_8h.html │ │ ├── PacketFileLogger_8h.html │ │ ├── PacketLogger_8h.html │ │ ├── PacketOutputWindowLogger_8h.html │ │ ├── PacketPriority_8h.html │ │ ├── PacketizedTCP_8h.html │ │ ├── PluginInterface2_8h.html │ │ ├── RPC3_8h.html │ │ ├── RPC4Plugin_8h.html │ │ ├── Rackspace_8h.html │ │ ├── RakMemoryOverride_8h.html │ │ ├── RakNetCommandParser_8h.html │ │ ├── RakNetStatistics_8h.html │ │ ├── RakNetTransport2_8h.html │ │ ├── RakNetTypes_8h.html │ │ ├── RakPeerInterface_8h.html │ │ ├── RakPeer_8h.html │ │ ├── RakVoice_8h.html │ │ ├── Rand_8h.html │ │ ├── ReadyEvent_8h.html │ │ ├── RefCountedObj_8h.html │ │ ├── ReliabilityLayer_8h.html │ │ ├── ReplicaEnums_8h.html │ │ ├── ReplicaManager3_8h.html │ │ ├── RoomsPlugin_8h.html │ │ ├── Router2_8h.html │ │ ├── SQLite3ClientPlugin_8h.html │ │ ├── SQLite3ServerPlugin_8h.html │ │ ├── SecureHandshake_8h.html │ │ ├── SimpleMutex_8h.html │ │ ├── SingleProducerConsumer_8h.html │ │ ├── SocketLayer_8h.html │ │ ├── StringCompressor_8h.html │ │ ├── StringTable_8h.html │ │ ├── TCPInterface_8h.html │ │ ├── TeamBalancer_8h.html │ │ ├── TelnetTransport_8h.html │ │ ├── ThreadsafePacketLogger_8h.html │ │ ├── TransportInterface_8h.html │ │ ├── TwoWayAuthentication_8h.html │ │ ├── UDPForwarder_8h.html │ │ ├── UDPProxyClient_8h.html │ │ ├── UDPProxyCoordinator_8h.html │ │ ├── UDPProxyServer_8h.html │ │ ├── annotated.html │ │ ├── classCheckSum-members.html │ │ ├── classCheckSum.html │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree-members.html │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree.html │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree.png │ │ ├── classDataStructures_1_1BPlusTree-members.html │ │ ├── classDataStructures_1_1BPlusTree.html │ │ ├── classDataStructures_1_1BinarySearchTree-members.html │ │ ├── classDataStructures_1_1BinarySearchTree.html │ │ ├── classDataStructures_1_1BinarySearchTree.png │ │ ├── classDataStructures_1_1CircularLinkedList-members.html │ │ ├── classDataStructures_1_1CircularLinkedList.html │ │ ├── classDataStructures_1_1Hash-members.html │ │ ├── classDataStructures_1_1Hash.html │ │ ├── classDataStructures_1_1List-members.html │ │ ├── classDataStructures_1_1List.html │ │ ├── classDataStructures_1_1MLKeyRef-members.html │ │ ├── classDataStructures_1_1MLKeyRef.html │ │ ├── classDataStructures_1_1Map-members.html │ │ ├── classDataStructures_1_1Map.html │ │ ├── classDataStructures_1_1MemoryPool-members.html │ │ ├── classDataStructures_1_1MemoryPool.html │ │ ├── classDataStructures_1_1Multilist-members.html │ │ ├── classDataStructures_1_1Multilist.html │ │ ├── classDataStructures_1_1OrderedList-members.html │ │ ├── classDataStructures_1_1OrderedList.html │ │ ├── classDataStructures_1_1Queue-members.html │ │ ├── classDataStructures_1_1Queue.html │ │ ├── classDataStructures_1_1QueueLinkedList-members.html │ │ ├── classDataStructures_1_1QueueLinkedList.html │ │ ├── classDataStructures_1_1SingleProducerConsumer-members.html │ │ ├── classDataStructures_1_1SingleProducerConsumer.html │ │ ├── classDataStructures_1_1Table-members.html │ │ ├── classDataStructures_1_1Table.html │ │ ├── classMemoryCompressor-members.html │ │ ├── classMemoryCompressor.html │ │ ├── classRakNet_1_1AutopatcherMySQLRepository-members.html │ │ ├── classRakNet_1_1AutopatcherMySQLRepository.html │ │ ├── classRakNet_1_1AutopatcherMySQLRepository.png │ │ ├── classRakNet_1_1AutopatcherPostgreRepository-members.html │ │ ├── classRakNet_1_1AutopatcherPostgreRepository.html │ │ ├── classRakNet_1_1AutopatcherPostgreRepository.png │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface-members.html │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface.html │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface.png │ │ ├── classRakNet_1_1AutopatcherServer-members.html │ │ ├── classRakNet_1_1AutopatcherServer.html │ │ ├── classRakNet_1_1AutopatcherServer.png │ │ ├── classRakNet_1_1AutopatcherServerLoadNotifier__Printf-members.html │ │ ├── classRakNet_1_1AutopatcherServerLoadNotifier__Printf.html │ │ ├── classRakNet_1_1BitStream-members.html │ │ ├── classRakNet_1_1BitStream.html │ │ ├── classRakNet_1_1CloudAllocator-members.html │ │ ├── classRakNet_1_1CloudAllocator.html │ │ ├── classRakNet_1_1CloudAllocator.png │ │ ├── classRakNet_1_1CloudClient-members.html │ │ ├── classRakNet_1_1CloudClient.html │ │ ├── classRakNet_1_1CloudClient.png │ │ ├── classRakNet_1_1CloudClientCallback-members.html │ │ ├── classRakNet_1_1CloudClientCallback.html │ │ ├── classRakNet_1_1CloudServer-members.html │ │ ├── classRakNet_1_1CloudServer.html │ │ ├── classRakNet_1_1CloudServer.png │ │ ├── classRakNet_1_1CloudServerQueryFilter-members.html │ │ ├── classRakNet_1_1CloudServerQueryFilter.html │ │ ├── classRakNet_1_1CommandParserInterface-members.html │ │ ├── classRakNet_1_1CommandParserInterface.html │ │ ├── classRakNet_1_1CommandParserInterface.png │ │ ├── classRakNet_1_1ConnectionGraph2-members.html │ │ ├── classRakNet_1_1ConnectionGraph2.html │ │ ├── classRakNet_1_1ConnectionGraph2.png │ │ ├── classRakNet_1_1Connection__RM3-members.html │ │ ├── classRakNet_1_1Connection__RM3.html │ │ ├── classRakNet_1_1ConsoleServer-members.html │ │ ├── classRakNet_1_1ConsoleServer.html │ │ ├── classRakNet_1_1DataCompressor-members.html │ │ ├── classRakNet_1_1DataCompressor.html │ │ ├── classRakNet_1_1EmailSender-members.html │ │ ├── classRakNet_1_1EmailSender.html │ │ ├── classRakNet_1_1FLP__Printf-members.html │ │ ├── classRakNet_1_1FLP__Printf.html │ │ ├── classRakNet_1_1FLP__Printf.png │ │ ├── classRakNet_1_1FileListProgress-members.html │ │ ├── classRakNet_1_1FileListProgress.html │ │ ├── classRakNet_1_1FileListProgress.png │ │ ├── classRakNet_1_1FileListTransfer-members.html │ │ ├── classRakNet_1_1FileListTransfer.html │ │ ├── classRakNet_1_1FileListTransfer.png │ │ ├── classRakNet_1_1FileListTransferCBInterface-members.html │ │ ├── classRakNet_1_1FileListTransferCBInterface.html │ │ ├── classRakNet_1_1FullyConnectedMesh2-members.html │ │ ├── classRakNet_1_1FullyConnectedMesh2.html │ │ ├── classRakNet_1_1FullyConnectedMesh2.png │ │ ├── classRakNet_1_1HTTPConnection-members.html │ │ ├── classRakNet_1_1HTTPConnection.html │ │ ├── classRakNet_1_1HuffmanEncodingTree-members.html │ │ ├── classRakNet_1_1HuffmanEncodingTree.html │ │ ├── classRakNet_1_1HuffmanEncodingTreeFactory-members.html │ │ ├── classRakNet_1_1HuffmanEncodingTreeFactory.html │ │ ├── classRakNet_1_1Lobby2Client-members.html │ │ ├── classRakNet_1_1Lobby2Client.html │ │ ├── classRakNet_1_1Lobby2Client.png │ │ ├── classRakNet_1_1Lobby2Plugin-members.html │ │ ├── classRakNet_1_1Lobby2Plugin.html │ │ ├── classRakNet_1_1Lobby2Plugin.png │ │ ├── classRakNet_1_1Lobby2Server-members.html │ │ ├── classRakNet_1_1Lobby2Server.html │ │ ├── classRakNet_1_1Lobby2Server.png │ │ ├── classRakNet_1_1Lobby2Server__PGSQL-members.html │ │ ├── classRakNet_1_1Lobby2Server__PGSQL.html │ │ ├── classRakNet_1_1Lobby2Server__PGSQL.png │ │ ├── classRakNet_1_1LogCommandParser-members.html │ │ ├── classRakNet_1_1LogCommandParser.html │ │ ├── classRakNet_1_1LogCommandParser.png │ │ ├── classRakNet_1_1MessageFilter-members.html │ │ ├── classRakNet_1_1MessageFilter.html │ │ ├── classRakNet_1_1MessageFilter.png │ │ ├── classRakNet_1_1NatPunchthroughClient-members.html │ │ ├── classRakNet_1_1NatPunchthroughClient.html │ │ ├── classRakNet_1_1NatPunchthroughClient.png │ │ ├── classRakNet_1_1NatPunchthroughServer-members.html │ │ ├── classRakNet_1_1NatPunchthroughServer.html │ │ ├── classRakNet_1_1NatPunchthroughServer.png │ │ ├── classRakNet_1_1NatTypeDetectionClient-members.html │ │ ├── classRakNet_1_1NatTypeDetectionClient.html │ │ ├── classRakNet_1_1NatTypeDetectionClient.png │ │ ├── classRakNet_1_1NatTypeDetectionServer-members.html │ │ ├── classRakNet_1_1NatTypeDetectionServer.html │ │ ├── classRakNet_1_1NatTypeDetectionServer.png │ │ ├── classRakNet_1_1NetworkIDManager-members.html │ │ ├── classRakNet_1_1NetworkIDManager.html │ │ ├── classRakNet_1_1NetworkIDObject-members.html │ │ ├── classRakNet_1_1NetworkIDObject.html │ │ ├── classRakNet_1_1NetworkIDObject.png │ │ ├── classRakNet_1_1PacketConsoleLogger-members.html │ │ ├── classRakNet_1_1PacketConsoleLogger.html │ │ ├── classRakNet_1_1PacketConsoleLogger.png │ │ ├── classRakNet_1_1PacketFileLogger-members.html │ │ ├── classRakNet_1_1PacketFileLogger.html │ │ ├── classRakNet_1_1PacketFileLogger.png │ │ ├── classRakNet_1_1PacketLogger-members.html │ │ ├── classRakNet_1_1PacketLogger.html │ │ ├── classRakNet_1_1PacketLogger.png │ │ ├── classRakNet_1_1PacketOutputWindowLogger-members.html │ │ ├── classRakNet_1_1PacketOutputWindowLogger.html │ │ ├── classRakNet_1_1PacketOutputWindowLogger.png │ │ ├── classRakNet_1_1PluginInterface2-members.html │ │ ├── classRakNet_1_1PluginInterface2.html │ │ ├── classRakNet_1_1PluginInterface2.png │ │ ├── classRakNet_1_1RPC3-members.html │ │ ├── classRakNet_1_1RPC3.html │ │ ├── classRakNet_1_1RPC3.png │ │ ├── classRakNet_1_1RPC4-members.html │ │ ├── classRakNet_1_1RPC4.html │ │ ├── classRakNet_1_1RPC4.png │ │ ├── classRakNet_1_1RPC4GlobalRegistration-members.html │ │ ├── classRakNet_1_1RPC4GlobalRegistration.html │ │ ├── classRakNet_1_1Rackspace-members.html │ │ ├── classRakNet_1_1Rackspace.html │ │ ├── classRakNet_1_1RackspaceEventCallback-members.html │ │ ├── classRakNet_1_1RackspaceEventCallback.html │ │ ├── classRakNet_1_1RackspaceEventCallback.png │ │ ├── classRakNet_1_1RackspaceEventCallback__Default-members.html │ │ ├── classRakNet_1_1RackspaceEventCallback__Default.html │ │ ├── classRakNet_1_1RackspaceEventCallback__Default.png │ │ ├── classRakNet_1_1RakNetCommandParser-members.html │ │ ├── classRakNet_1_1RakNetCommandParser.html │ │ ├── classRakNet_1_1RakNetCommandParser.png │ │ ├── classRakNet_1_1RakNetTransport2-members.html │ │ ├── classRakNet_1_1RakNetTransport2.html │ │ ├── classRakNet_1_1RakNetTransport2.png │ │ ├── classRakNet_1_1RakPeer-members.html │ │ ├── classRakNet_1_1RakPeer.html │ │ ├── classRakNet_1_1RakPeer.png │ │ ├── classRakNet_1_1RakPeerInterface-members.html │ │ ├── classRakNet_1_1RakPeerInterface.html │ │ ├── classRakNet_1_1RakPeerInterface.png │ │ ├── classRakNet_1_1RakString-members.html │ │ ├── classRakNet_1_1RakString.html │ │ ├── classRakNet_1_1RakVoice-members.html │ │ ├── classRakNet_1_1RakVoice.html │ │ ├── classRakNet_1_1RakVoice.png │ │ ├── classRakNet_1_1RakWString-members.html │ │ ├── classRakNet_1_1RakWString.html │ │ ├── classRakNet_1_1ReadyEvent-members.html │ │ ├── classRakNet_1_1ReadyEvent.html │ │ ├── classRakNet_1_1ReadyEvent.png │ │ ├── classRakNet_1_1ReliabilityLayer-members.html │ │ ├── classRakNet_1_1ReliabilityLayer.html │ │ ├── classRakNet_1_1Replica3-members.html │ │ ├── classRakNet_1_1Replica3.html │ │ ├── classRakNet_1_1Replica3.png │ │ ├── classRakNet_1_1Replica3Composite-members.html │ │ ├── classRakNet_1_1Replica3Composite.html │ │ ├── classRakNet_1_1Replica3Composite.png │ │ ├── classRakNet_1_1ReplicaManager3-members.html │ │ ├── classRakNet_1_1ReplicaManager3.html │ │ ├── classRakNet_1_1ReplicaManager3.png │ │ ├── classRakNet_1_1RoomsPlugin-members.html │ │ ├── classRakNet_1_1RoomsPlugin.html │ │ ├── classRakNet_1_1RoomsPlugin.png │ │ ├── classRakNet_1_1Router2-members.html │ │ ├── classRakNet_1_1Router2.html │ │ ├── classRakNet_1_1Router2.png │ │ ├── classRakNet_1_1SQLite3ClientPlugin-members.html │ │ ├── classRakNet_1_1SQLite3ClientPlugin.html │ │ ├── classRakNet_1_1SQLite3ClientPlugin.png │ │ ├── classRakNet_1_1SQLite3PluginResultInterface-members.html │ │ ├── classRakNet_1_1SQLite3PluginResultInterface.html │ │ ├── classRakNet_1_1SQLite3PluginResultInterface.png │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf-members.html │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf.html │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf.png │ │ ├── classRakNet_1_1SQLite3ServerPlugin-members.html │ │ ├── classRakNet_1_1SQLite3ServerPlugin.html │ │ ├── classRakNet_1_1SQLite3ServerPlugin.png │ │ ├── classRakNet_1_1SimpleMutex-members.html │ │ ├── classRakNet_1_1SimpleMutex.html │ │ ├── classRakNet_1_1StringCompressor-members.html │ │ ├── classRakNet_1_1StringCompressor.html │ │ ├── classRakNet_1_1StringTable-members.html │ │ ├── classRakNet_1_1StringTable.html │ │ ├── classRakNet_1_1TeamBalancer-members.html │ │ ├── classRakNet_1_1TeamBalancer.html │ │ ├── classRakNet_1_1TeamBalancer.png │ │ ├── classRakNet_1_1TelnetTransport-members.html │ │ ├── classRakNet_1_1TelnetTransport.html │ │ ├── classRakNet_1_1TelnetTransport.png │ │ ├── classRakNet_1_1ThreadsafePacketLogger-members.html │ │ ├── classRakNet_1_1ThreadsafePacketLogger.html │ │ ├── classRakNet_1_1ThreadsafePacketLogger.png │ │ ├── classRakNet_1_1TransportInterface-members.html │ │ ├── classRakNet_1_1TransportInterface.html │ │ ├── classRakNet_1_1TransportInterface.png │ │ ├── classRakNet_1_1TwoWayAuthentication-members.html │ │ ├── classRakNet_1_1TwoWayAuthentication.html │ │ ├── classRakNet_1_1TwoWayAuthentication.png │ │ ├── classRakNet_1_1UDPForwarder-members.html │ │ ├── classRakNet_1_1UDPForwarder.html │ │ ├── classRakNet_1_1UDPProxyClient-members.html │ │ ├── classRakNet_1_1UDPProxyClient.html │ │ ├── classRakNet_1_1UDPProxyClient.png │ │ ├── classRakNet_1_1UDPProxyCoordinator-members.html │ │ ├── classRakNet_1_1UDPProxyCoordinator.html │ │ ├── classRakNet_1_1UDPProxyCoordinator.png │ │ ├── classRakNet_1_1UDPProxyServer-members.html │ │ ├── classRakNet_1_1UDPProxyServer.html │ │ ├── classRakNet_1_1UDPProxyServer.png │ │ ├── classRakNet_1_1VariableDeltaSerializer-members.html │ │ ├── classRakNet_1_1VariableDeltaSerializer.html │ │ ├── classRakNet_1_1VariableListDeltaTracker-members.html │ │ ├── classRakNet_1_1VariableListDeltaTracker.html │ │ ├── classRefCountedObj-members.html │ │ ├── classRefCountedObj.html │ │ ├── classes.html │ │ ├── deprecated.html │ │ ├── dir_0573ec14f007de8d8590c1959ee6daf6.html │ │ ├── dir_1285d55ea74ca0518d26c0bad7eeef77.html │ │ ├── dir_32d6781ee312272eb2a7c1b624f78872.html │ │ ├── dir_34b603ca62d506a9ce13265bb4ce7da3.html │ │ ├── dir_3d021f431c5db9f56f2547ad9ab4edfa.html │ │ ├── dir_571aef80e97e0a41c2b891d55d56364a.html │ │ ├── dir_604b8536ae4240420803795590a868a7.html │ │ ├── dir_83ad52fa097cfcc4d14378788c7866dc.html │ │ ├── dir_96ebd9f59bc21f1e6b5f55c47807036e.html │ │ ├── dir_a2927836cbd263df996be20bba81ab86.html │ │ ├── dir_b83dad7c937797dcd05e7993188bece7.html │ │ ├── dir_c5594de6f3dbd84dcacf6742e08fe107.html │ │ ├── dir_c735619561d5d707a5ba997b3f90f624.html │ │ ├── dir_dd61f8c0a2ab163449c9850f7cbd1a45.html │ │ ├── dir_e9ced06eee50989539a322e3eb25cf88.html │ │ ├── dirs.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_0x61.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6b.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_0x7e.html │ │ ├── functions_enum.html │ │ ├── functions_eval.html │ │ ├── functions_func.html │ │ ├── functions_func_0x61.html │ │ ├── functions_func_0x62.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x68.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6b.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6d.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x6f.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x71.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x76.html │ │ ├── functions_func_0x77.html │ │ ├── functions_func_0x7e.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── group__CLOUD__GROUP.html │ │ ├── group__DIRECTORY__DELTA__TRANSFER__GROUP.html │ │ ├── group__FILE__LIST__TRANSFER__GROUP.html │ │ ├── group__LOBBY__2__CLIENT.html │ │ ├── group__LOBBY__2__COMMANDS.html │ │ ├── group__LOBBY__2__GROUP.html │ │ ├── group__LOBBY__2__NOTIFICATIONS.html │ │ ├── group__LOBBY__2__SERVER.html │ │ ├── group__MESSAGEFILTER__GROUP.html │ │ ├── group__NAT__PUNCHTHROUGH__GROUP.html │ │ ├── group__NAT__TYPE__DETECTION__GROUP.html │ │ ├── group__PACKETLOGGER__GROUP.html │ │ ├── group__PLUGINS__GROUP.html │ │ ├── group__PLUGIN__INTERFACE__GROUP.html │ │ ├── group__RAKNET__TRANSPORT__GROUP.html │ │ ├── group__READY__EVENT__GROUP.html │ │ ├── group__REPLICA__MANAGER__GROUP3.html │ │ ├── group__ROOMS__COMMANDS.html │ │ ├── group__ROOMS__GROUP.html │ │ ├── group__ROOMS__NOTIFICATIONS.html │ │ ├── group__ROUTER__2__GROUP.html │ │ ├── group__RPC__3__GROUP.html │ │ ├── group__RPC__PLUGIN__GROUP.html │ │ ├── group__SQL__LITE__3__PLUGIN.html │ │ ├── group__TEAM__BALANCER__GROUP.html │ │ ├── group__UDP__PROXY__GROUP.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── main.html │ │ ├── modules.html │ │ ├── namespaceDataStructures.html │ │ ├── namespaceRakNet.html │ │ ├── namespacemembers.html │ │ ├── namespacemembers_enum.html │ │ ├── namespacemembers_eval.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_type.html │ │ ├── namespacemembers_vars.html │ │ ├── namespaces.html │ │ ├── pages.html │ │ ├── structDataStructures_1_1Page-members.html │ │ ├── structDataStructures_1_1Page.html │ │ ├── structDataStructures_1_1Table_1_1Cell-members.html │ │ ├── structDataStructures_1_1Table_1_1Cell.html │ │ ├── structDataStructures_1_1Table_1_1ColumnDescriptor-members.html │ │ ├── structDataStructures_1_1Table_1_1ColumnDescriptor.html │ │ ├── structDataStructures_1_1Table_1_1Row-members.html │ │ ├── structDataStructures_1_1Table_1_1Row.html │ │ ├── structRakNet_1_1AcceptInvite__Func-members.html │ │ ├── structRakNet_1_1AcceptInvite__Func.html │ │ ├── structRakNet_1_1AcceptInvite__Func.png │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func-members.html │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func.html │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func.png │ │ ├── structRakNet_1_1AreAllMembersReady__Func-members.html │ │ ├── structRakNet_1_1AreAllMembersReady__Func.html │ │ ├── structRakNet_1_1AreAllMembersReady__Func.png │ │ ├── structRakNet_1_1AutopatcherServerLoadNotifier_1_1AutopatcherState-members.html │ │ ├── structRakNet_1_1AutopatcherServerLoadNotifier_1_1AutopatcherState.html │ │ ├── structRakNet_1_1Bitstream__Func-members.html │ │ ├── structRakNet_1_1Bitstream__Func.html │ │ ├── structRakNet_1_1Bitstream__Func.png │ │ ├── structRakNet_1_1Bitstream__Notification-members.html │ │ ├── structRakNet_1_1Bitstream__Notification.html │ │ ├── structRakNet_1_1Bitstream__Notification.png │ │ ├── structRakNet_1_1BookmarkedUsers__Add-members.html │ │ ├── structRakNet_1_1BookmarkedUsers__Add.html │ │ ├── structRakNet_1_1BookmarkedUsers__Add.png │ │ ├── structRakNet_1_1BookmarkedUsers__Get-members.html │ │ ├── structRakNet_1_1BookmarkedUsers__Get.html │ │ ├── structRakNet_1_1BookmarkedUsers__Get.png │ │ ├── structRakNet_1_1BookmarkedUsers__Remove-members.html │ │ ├── structRakNet_1_1BookmarkedUsers__Remove.html │ │ ├── structRakNet_1_1BookmarkedUsers__Remove.png │ │ ├── structRakNet_1_1CDKey__Add-members.html │ │ ├── structRakNet_1_1CDKey__Add.html │ │ ├── structRakNet_1_1CDKey__Add.png │ │ ├── structRakNet_1_1CDKey__FlagStolen-members.html │ │ ├── structRakNet_1_1CDKey__FlagStolen.html │ │ ├── structRakNet_1_1CDKey__FlagStolen.png │ │ ├── structRakNet_1_1CDKey__GetStatus-members.html │ │ ├── structRakNet_1_1CDKey__GetStatus.html │ │ ├── structRakNet_1_1CDKey__GetStatus.png │ │ ├── structRakNet_1_1CDKey__Use-members.html │ │ ├── structRakNet_1_1CDKey__Use.html │ │ ├── structRakNet_1_1CDKey__Use.png │ │ ├── structRakNet_1_1ChangeHandle__Func-members.html │ │ ├── structRakNet_1_1ChangeHandle__Func.html │ │ ├── structRakNet_1_1ChangeHandle__Func.png │ │ ├── structRakNet_1_1ChangeRoomName__Func-members.html │ │ ├── structRakNet_1_1ChangeRoomName__Func.html │ │ ├── structRakNet_1_1ChangeRoomName__Func.png │ │ ├── structRakNet_1_1ChangeSlotCounts__Func-members.html │ │ ├── structRakNet_1_1ChangeSlotCounts__Func.html │ │ ├── structRakNet_1_1ChangeSlotCounts__Func.png │ │ ├── structRakNet_1_1Chat__Func-members.html │ │ ├── structRakNet_1_1Chat__Func.html │ │ ├── structRakNet_1_1Chat__Func.png │ │ ├── structRakNet_1_1Chat__Notification-members.html │ │ ├── structRakNet_1_1Chat__Notification.html │ │ ├── structRakNet_1_1Chat__Notification.png │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation-members.html │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation.html │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation.png │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest-members.html │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest.html │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest.png │ │ ├── structRakNet_1_1Clans__ChangeHandle-members.html │ │ ├── structRakNet_1_1Clans__ChangeHandle.html │ │ ├── structRakNet_1_1Clans__ChangeHandle.png │ │ ├── structRakNet_1_1Clans__Create-members.html │ │ ├── structRakNet_1_1Clans__Create.html │ │ ├── structRakNet_1_1Clans__Create.png │ │ ├── structRakNet_1_1Clans__CreateBoard-members.html │ │ ├── structRakNet_1_1Clans__CreateBoard.html │ │ ├── structRakNet_1_1Clans__CreateBoard.png │ │ ├── structRakNet_1_1Clans__CreateNewTopic-members.html │ │ ├── structRakNet_1_1Clans__CreateNewTopic.html │ │ ├── structRakNet_1_1Clans__CreateNewTopic.png │ │ ├── structRakNet_1_1Clans__DestroyBoard-members.html │ │ ├── structRakNet_1_1Clans__DestroyBoard.html │ │ ├── structRakNet_1_1Clans__DestroyBoard.png │ │ ├── structRakNet_1_1Clans__DownloadInvitationList-members.html │ │ ├── structRakNet_1_1Clans__DownloadInvitationList.html │ │ ├── structRakNet_1_1Clans__DownloadInvitationList.png │ │ ├── structRakNet_1_1Clans__DownloadRequestList-members.html │ │ ├── structRakNet_1_1Clans__DownloadRequestList.html │ │ ├── structRakNet_1_1Clans__DownloadRequestList.png │ │ ├── structRakNet_1_1Clans__Get-members.html │ │ ├── structRakNet_1_1Clans__Get.html │ │ ├── structRakNet_1_1Clans__Get.png │ │ ├── structRakNet_1_1Clans__GetBlacklist-members.html │ │ ├── structRakNet_1_1Clans__GetBlacklist.html │ │ ├── structRakNet_1_1Clans__GetBlacklist.png │ │ ├── structRakNet_1_1Clans__GetBoards-members.html │ │ ├── structRakNet_1_1Clans__GetBoards.html │ │ ├── structRakNet_1_1Clans__GetBoards.png │ │ ├── structRakNet_1_1Clans__GetList-members.html │ │ ├── structRakNet_1_1Clans__GetList.html │ │ ├── structRakNet_1_1Clans__GetList.png │ │ ├── structRakNet_1_1Clans__GetMemberProperties-members.html │ │ ├── structRakNet_1_1Clans__GetMemberProperties.html │ │ ├── structRakNet_1_1Clans__GetMemberProperties.png │ │ ├── structRakNet_1_1Clans__GetMembers-members.html │ │ ├── structRakNet_1_1Clans__GetMembers.html │ │ ├── structRakNet_1_1Clans__GetMembers.png │ │ ├── structRakNet_1_1Clans__GetPosts-members.html │ │ ├── structRakNet_1_1Clans__GetPosts.html │ │ ├── structRakNet_1_1Clans__GetPosts.png │ │ ├── structRakNet_1_1Clans__GetProperties-members.html │ │ ├── structRakNet_1_1Clans__GetProperties.html │ │ ├── structRakNet_1_1Clans__GetProperties.png │ │ ├── structRakNet_1_1Clans__GetTopics-members.html │ │ ├── structRakNet_1_1Clans__GetTopics.html │ │ ├── structRakNet_1_1Clans__GetTopics.png │ │ ├── structRakNet_1_1Clans__GrantLeader-members.html │ │ ├── structRakNet_1_1Clans__GrantLeader.html │ │ ├── structRakNet_1_1Clans__GrantLeader.png │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser-members.html │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser.html │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser.png │ │ ├── structRakNet_1_1Clans__Leave-members.html │ │ ├── structRakNet_1_1Clans__Leave.html │ │ ├── structRakNet_1_1Clans__Leave.png │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation-members.html │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation.html │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation.png │ │ ├── structRakNet_1_1Clans__RejectJoinRequest-members.html │ │ ├── structRakNet_1_1Clans__RejectJoinRequest.html │ │ ├── structRakNet_1_1Clans__RejectJoinRequest.png │ │ ├── structRakNet_1_1Clans__RemovePost-members.html │ │ ├── structRakNet_1_1Clans__RemovePost.html │ │ ├── structRakNet_1_1Clans__RemovePost.png │ │ ├── structRakNet_1_1Clans__ReplyToTopic-members.html │ │ ├── structRakNet_1_1Clans__ReplyToTopic.html │ │ ├── structRakNet_1_1Clans__ReplyToTopic.png │ │ ├── structRakNet_1_1Clans__SendJoinInvitation-members.html │ │ ├── structRakNet_1_1Clans__SendJoinInvitation.html │ │ ├── structRakNet_1_1Clans__SendJoinInvitation.png │ │ ├── structRakNet_1_1Clans__SendJoinRequest-members.html │ │ ├── structRakNet_1_1Clans__SendJoinRequest.html │ │ ├── structRakNet_1_1Clans__SendJoinRequest.png │ │ ├── structRakNet_1_1Clans__SetMemberRank-members.html │ │ ├── structRakNet_1_1Clans__SetMemberRank.html │ │ ├── structRakNet_1_1Clans__SetMemberRank.png │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties-members.html │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties.html │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties.png │ │ ├── structRakNet_1_1Clans__SetProperties-members.html │ │ ├── structRakNet_1_1Clans__SetProperties.html │ │ ├── structRakNet_1_1Clans__SetProperties.png │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus-members.html │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus.html │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus.png │ │ ├── structRakNet_1_1Clans__UnblacklistUser-members.html │ │ ├── structRakNet_1_1Clans__UnblacklistUser.html │ │ ├── structRakNet_1_1Clans__UnblacklistUser.png │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation-members.html │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation.html │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation.png │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest-members.html │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest.html │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest.png │ │ ├── structRakNet_1_1Client__ChangeHandle-members.html │ │ ├── structRakNet_1_1Client__ChangeHandle.html │ │ ├── structRakNet_1_1Client__ChangeHandle.png │ │ ├── structRakNet_1_1Client__GetAccountDetails-members.html │ │ ├── structRakNet_1_1Client__GetAccountDetails.html │ │ ├── structRakNet_1_1Client__GetAccountDetails.png │ │ ├── structRakNet_1_1Client__GetEmailAddress-members.html │ │ ├── structRakNet_1_1Client__GetEmailAddress.html │ │ ├── structRakNet_1_1Client__GetEmailAddress.png │ │ ├── structRakNet_1_1Client__GetIgnoreList-members.html │ │ ├── structRakNet_1_1Client__GetIgnoreList.html │ │ ├── structRakNet_1_1Client__GetIgnoreList.png │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer-members.html │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer.html │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer.png │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle-members.html │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle.html │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle.png │ │ ├── structRakNet_1_1Client__GetPresence-members.html │ │ ├── structRakNet_1_1Client__GetPresence.html │ │ ├── structRakNet_1_1Client__GetPresence.png │ │ ├── structRakNet_1_1Client__Login-members.html │ │ ├── structRakNet_1_1Client__Login.html │ │ ├── structRakNet_1_1Client__Login.png │ │ ├── structRakNet_1_1Client__Logoff-members.html │ │ ├── structRakNet_1_1Client__Logoff.html │ │ ├── structRakNet_1_1Client__Logoff.png │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage-members.html │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage.html │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage.png │ │ ├── structRakNet_1_1Client__RegisterAccount-members.html │ │ ├── structRakNet_1_1Client__RegisterAccount.html │ │ ├── structRakNet_1_1Client__RegisterAccount.png │ │ ├── structRakNet_1_1Client__SetPresence-members.html │ │ ├── structRakNet_1_1Client__SetPresence.html │ │ ├── structRakNet_1_1Client__SetPresence.png │ │ ├── structRakNet_1_1Client__StartIgnore-members.html │ │ ├── structRakNet_1_1Client__StartIgnore.html │ │ ├── structRakNet_1_1Client__StartIgnore.png │ │ ├── structRakNet_1_1Client__StopIgnore-members.html │ │ ├── structRakNet_1_1Client__StopIgnore.html │ │ ├── structRakNet_1_1Client__StopIgnore.png │ │ ├── structRakNet_1_1Client__UpdateAccount-members.html │ │ ├── structRakNet_1_1Client__UpdateAccount.html │ │ ├── structRakNet_1_1Client__UpdateAccount.png │ │ ├── structRakNet_1_1Client__ValidateHandle-members.html │ │ ├── structRakNet_1_1Client__ValidateHandle.html │ │ ├── structRakNet_1_1Client__ValidateHandle.png │ │ ├── structRakNet_1_1CloudKey-members.html │ │ ├── structRakNet_1_1CloudKey.html │ │ ├── structRakNet_1_1CloudQuery-members.html │ │ ├── structRakNet_1_1CloudQuery.html │ │ ├── structRakNet_1_1CreateRoom__Func-members.html │ │ ├── structRakNet_1_1CreateRoom__Func.html │ │ ├── structRakNet_1_1CreateRoom__Func.png │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification-members.html │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification.html │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification.png │ │ ├── structRakNet_1_1Emails__Delete-members.html │ │ ├── structRakNet_1_1Emails__Delete.html │ │ ├── structRakNet_1_1Emails__Delete.png │ │ ├── structRakNet_1_1Emails__Get-members.html │ │ ├── structRakNet_1_1Emails__Get.html │ │ ├── structRakNet_1_1Emails__Get.png │ │ ├── structRakNet_1_1Emails__Send-members.html │ │ ├── structRakNet_1_1Emails__Send.html │ │ ├── structRakNet_1_1Emails__Send.png │ │ ├── structRakNet_1_1Emails__SetStatus-members.html │ │ ├── structRakNet_1_1Emails__SetStatus.html │ │ ├── structRakNet_1_1Emails__SetStatus.png │ │ ├── structRakNet_1_1EnterRoom__Func-members.html │ │ ├── structRakNet_1_1EnterRoom__Func.html │ │ ├── structRakNet_1_1EnterRoom__Func.png │ │ ├── structRakNet_1_1FileListNode-members.html │ │ ├── structRakNet_1_1FileListNode.html │ │ ├── structRakNet_1_1Friends__AcceptInvite-members.html │ │ ├── structRakNet_1_1Friends__AcceptInvite.html │ │ ├── structRakNet_1_1Friends__AcceptInvite.png │ │ ├── structRakNet_1_1Friends__GetFriends-members.html │ │ ├── structRakNet_1_1Friends__GetFriends.html │ │ ├── structRakNet_1_1Friends__GetFriends.png │ │ ├── structRakNet_1_1Friends__GetInvites-members.html │ │ ├── structRakNet_1_1Friends__GetInvites.html │ │ ├── structRakNet_1_1Friends__GetInvites.png │ │ ├── structRakNet_1_1Friends__RejectInvite-members.html │ │ ├── structRakNet_1_1Friends__RejectInvite.html │ │ ├── structRakNet_1_1Friends__RejectInvite.png │ │ ├── structRakNet_1_1Friends__Remove-members.html │ │ ├── structRakNet_1_1Friends__Remove.html │ │ ├── structRakNet_1_1Friends__Remove.png │ │ ├── structRakNet_1_1Friends__SendInvite-members.html │ │ ├── structRakNet_1_1Friends__SendInvite.html │ │ ├── structRakNet_1_1Friends__SendInvite.png │ │ ├── structRakNet_1_1GetBanReason__Func-members.html │ │ ├── structRakNet_1_1GetBanReason__Func.html │ │ ├── structRakNet_1_1GetBanReason__Func.png │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func-members.html │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func.html │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func.png │ │ ├── structRakNet_1_1GetReadyStatus__Func-members.html │ │ ├── structRakNet_1_1GetReadyStatus__Func.html │ │ ├── structRakNet_1_1GetReadyStatus__Func.png │ │ ├── structRakNet_1_1GetRoomLockState__Func-members.html │ │ ├── structRakNet_1_1GetRoomLockState__Func.html │ │ ├── structRakNet_1_1GetRoomLockState__Func.png │ │ ├── structRakNet_1_1GetRoomProperties__Func-members.html │ │ ├── structRakNet_1_1GetRoomProperties__Func.html │ │ ├── structRakNet_1_1GetRoomProperties__Func.png │ │ ├── structRakNet_1_1GrantModerator__Func-members.html │ │ ├── structRakNet_1_1GrantModerator__Func.html │ │ ├── structRakNet_1_1GrantModerator__Func.png │ │ ├── structRakNet_1_1HTTPConnection_1_1BadResponse-members.html │ │ ├── structRakNet_1_1HTTPConnection_1_1BadResponse.html │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification-members.html │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification.html │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification.png │ │ ├── structRakNet_1_1IndexedBinaryValue-members.html │ │ ├── structRakNet_1_1IndexedBinaryValue.html │ │ ├── structRakNet_1_1IndexedIntegerValue-members.html │ │ ├── structRakNet_1_1IndexedIntegerValue.html │ │ ├── structRakNet_1_1InternalPacket-members.html │ │ ├── structRakNet_1_1InternalPacket.html │ │ ├── structRakNet_1_1InternalPacketRefCountedData-members.html │ │ ├── structRakNet_1_1InternalPacketRefCountedData.html │ │ ├── structRakNet_1_1IsInQuickJoin__Func-members.html │ │ ├── structRakNet_1_1IsInQuickJoin__Func.html │ │ ├── structRakNet_1_1IsInQuickJoin__Func.png │ │ ├── structRakNet_1_1JoinByFilter__Func-members.html │ │ ├── structRakNet_1_1JoinByFilter__Func.html │ │ ├── structRakNet_1_1JoinByFilter__Func.png │ │ ├── structRakNet_1_1KickMember__Func-members.html │ │ ├── structRakNet_1_1KickMember__Func.html │ │ ├── structRakNet_1_1KickMember__Func.png │ │ ├── structRakNet_1_1LastSerializationResult-members.html │ │ ├── structRakNet_1_1LastSerializationResult.html │ │ ├── structRakNet_1_1LeaveRoom__Func-members.html │ │ ├── structRakNet_1_1LeaveRoom__Func.html │ │ ├── structRakNet_1_1LeaveRoom__Func.png │ │ ├── structRakNet_1_1Lobby2Callbacks-members.html │ │ ├── structRakNet_1_1Lobby2Callbacks.html │ │ ├── structRakNet_1_1Lobby2Callbacks.png │ │ ├── structRakNet_1_1Lobby2Message-members.html │ │ ├── structRakNet_1_1Lobby2Message.html │ │ ├── structRakNet_1_1Lobby2Message.png │ │ ├── structRakNet_1_1Lobby2Presence-members.html │ │ ├── structRakNet_1_1Lobby2Presence.html │ │ ├── structRakNet_1_1Lobby2Printf-members.html │ │ ├── structRakNet_1_1Lobby2Printf.html │ │ ├── structRakNet_1_1Lobby2Printf.png │ │ ├── structRakNet_1_1Lobby2ServerCommand-members.html │ │ ├── structRakNet_1_1Lobby2ServerCommand.html │ │ ├── structRakNet_1_1Lobby2Server_1_1ConfigurationProperties-members.html │ │ ├── structRakNet_1_1Lobby2Server_1_1ConfigurationProperties.html │ │ ├── structRakNet_1_1LogCommandParser_1_1SystemAddressAndChannel-members.html │ │ ├── structRakNet_1_1LogCommandParser_1_1SystemAddressAndChannel.html │ │ ├── structRakNet_1_1ModeratorChanged__Notification-members.html │ │ ├── structRakNet_1_1ModeratorChanged__Notification.html │ │ ├── structRakNet_1_1ModeratorChanged__Notification.png │ │ ├── structRakNet_1_1Packet-members.html │ │ ├── structRakNet_1_1Packet.html │ │ ├── structRakNet_1_1Platform__Shutdown-members.html │ │ ├── structRakNet_1_1Platform__Shutdown.html │ │ ├── structRakNet_1_1Platform__Shutdown.png │ │ ├── structRakNet_1_1Platform__Startup-members.html │ │ ├── structRakNet_1_1Platform__Startup.html │ │ ├── structRakNet_1_1Platform__Startup.png │ │ ├── structRakNet_1_1PublicKey-members.html │ │ ├── structRakNet_1_1PublicKey.html │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification-members.html │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification.html │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification.png │ │ ├── structRakNet_1_1QuickJoinExpired__Notification-members.html │ │ ├── structRakNet_1_1QuickJoinExpired__Notification.html │ │ ├── structRakNet_1_1QuickJoinExpired__Notification.png │ │ ├── structRakNet_1_1RakNetGUID-members.html │ │ ├── structRakNet_1_1RakNetGUID.html │ │ ├── structRakNet_1_1RakNetStatistics-members.html │ │ ├── structRakNet_1_1RakNetStatistics.html │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData-members.html │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData.html │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData.png │ │ ├── structRakNet_1_1Ranking__GetMatches-members.html │ │ ├── structRakNet_1_1Ranking__GetMatches.html │ │ ├── structRakNet_1_1Ranking__GetMatches.png │ │ ├── structRakNet_1_1Ranking__GetRating-members.html │ │ ├── structRakNet_1_1Ranking__GetRating.html │ │ ├── structRakNet_1_1Ranking__GetRating.png │ │ ├── structRakNet_1_1Ranking__GetTotalScore-members.html │ │ ├── structRakNet_1_1Ranking__GetTotalScore.html │ │ ├── structRakNet_1_1Ranking__GetTotalScore.png │ │ ├── structRakNet_1_1Ranking__PruneMatches-members.html │ │ ├── structRakNet_1_1Ranking__PruneMatches.html │ │ ├── structRakNet_1_1Ranking__PruneMatches.png │ │ ├── structRakNet_1_1Ranking__SubmitMatch-members.html │ │ ├── structRakNet_1_1Ranking__SubmitMatch.html │ │ ├── structRakNet_1_1Ranking__SubmitMatch.png │ │ ├── structRakNet_1_1Ranking__UpdateRating-members.html │ │ ├── structRakNet_1_1Ranking__UpdateRating.html │ │ ├── structRakNet_1_1Ranking__UpdateRating.png │ │ ├── structRakNet_1_1Ranking__WipeMatches-members.html │ │ ├── structRakNet_1_1Ranking__WipeMatches.html │ │ ├── structRakNet_1_1Ranking__WipeMatches.png │ │ ├── structRakNet_1_1Ranking__WipeRatings-members.html │ │ ├── structRakNet_1_1Ranking__WipeRatings.html │ │ ├── structRakNet_1_1Ranking__WipeRatings.png │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer-members.html │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer.html │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer.png │ │ ├── structRakNet_1_1RemoteClient-members.html │ │ ├── structRakNet_1_1RemoteClient.html │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func-members.html │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func.html │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func.png │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification-members.html │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification.html │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification.png │ │ ├── structRakNet_1_1RoomInvitationSent__Notification-members.html │ │ ├── structRakNet_1_1RoomInvitationSent__Notification.html │ │ ├── structRakNet_1_1RoomInvitationSent__Notification.png │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification-members.html │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification.html │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification.png │ │ ├── structRakNet_1_1RoomLockStateSet__Notification-members.html │ │ ├── structRakNet_1_1RoomLockStateSet__Notification.html │ │ ├── structRakNet_1_1RoomLockStateSet__Notification.png │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification.html │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification.png │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification.html │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification.png │ │ ├── structRakNet_1_1RoomMemberKicked__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberKicked__Notification.html │ │ ├── structRakNet_1_1RoomMemberKicked__Notification.png │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification.html │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification.png │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification.html │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification.png │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification.html │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification.png │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification-members.html │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification.html │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification.png │ │ ├── structRakNet_1_1RoomNameSet__Notification-members.html │ │ ├── structRakNet_1_1RoomNameSet__Notification.html │ │ ├── structRakNet_1_1RoomNameSet__Notification.png │ │ ├── structRakNet_1_1RoomsPluginFunc-members.html │ │ ├── structRakNet_1_1RoomsPluginFunc.html │ │ ├── structRakNet_1_1RoomsPluginFunc.png │ │ ├── structRakNet_1_1RoomsPluginNotification-members.html │ │ ├── structRakNet_1_1RoomsPluginNotification.html │ │ ├── structRakNet_1_1RoomsPluginNotification.png │ │ ├── structRakNet_1_1SearchByFilter__Func-members.html │ │ ├── structRakNet_1_1SearchByFilter__Func.html │ │ ├── structRakNet_1_1SearchByFilter__Func.png │ │ ├── structRakNet_1_1SendInvite__Func-members.html │ │ ├── structRakNet_1_1SendInvite__Func.html │ │ ├── structRakNet_1_1SendInvite__Func.png │ │ ├── structRakNet_1_1SerializeParameters-members.html │ │ ├── structRakNet_1_1SerializeParameters.html │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func-members.html │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func.html │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func.png │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func-members.html │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func.html │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func.png │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func-members.html │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func.html │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func.png │ │ ├── structRakNet_1_1SetReadyStatus__Func-members.html │ │ ├── structRakNet_1_1SetReadyStatus__Func.html │ │ ├── structRakNet_1_1SetReadyStatus__Func.png │ │ ├── structRakNet_1_1SetRoomLockState__Func-members.html │ │ ├── structRakNet_1_1SetRoomLockState__Func.html │ │ ├── structRakNet_1_1SetRoomLockState__Func.png │ │ ├── structRakNet_1_1SlotCountsSet__Notification-members.html │ │ ├── structRakNet_1_1SlotCountsSet__Notification.html │ │ ├── structRakNet_1_1SlotCountsSet__Notification.png │ │ ├── structRakNet_1_1SocketDescriptor-members.html │ │ ├── structRakNet_1_1SocketDescriptor.html │ │ ├── structRakNet_1_1StartSpectating__Func-members.html │ │ ├── structRakNet_1_1StartSpectating__Func.html │ │ ├── structRakNet_1_1StartSpectating__Func.png │ │ ├── structRakNet_1_1StopSpectating__Func-members.html │ │ ├── structRakNet_1_1StopSpectating__Func.html │ │ ├── structRakNet_1_1StopSpectating__Func.png │ │ ├── structRakNet_1_1SystemAddress-members.html │ │ ├── structRakNet_1_1SystemAddress.html │ │ ├── structRakNet_1_1System__BanUser-members.html │ │ ├── structRakNet_1_1System__BanUser.html │ │ ├── structRakNet_1_1System__BanUser.png │ │ ├── structRakNet_1_1System__CreateDatabase-members.html │ │ ├── structRakNet_1_1System__CreateDatabase.html │ │ ├── structRakNet_1_1System__CreateDatabase.png │ │ ├── structRakNet_1_1System__CreateTitle-members.html │ │ ├── structRakNet_1_1System__CreateTitle.html │ │ ├── structRakNet_1_1System__CreateTitle.png │ │ ├── structRakNet_1_1System__DeleteAccount-members.html │ │ ├── structRakNet_1_1System__DeleteAccount.html │ │ ├── structRakNet_1_1System__DeleteAccount.png │ │ ├── structRakNet_1_1System__DestroyDatabase-members.html │ │ ├── structRakNet_1_1System__DestroyDatabase.html │ │ ├── structRakNet_1_1System__DestroyDatabase.png │ │ ├── structRakNet_1_1System__DestroyTitle-members.html │ │ ├── structRakNet_1_1System__DestroyTitle.html │ │ ├── structRakNet_1_1System__DestroyTitle.png │ │ ├── structRakNet_1_1System__GetTitleBinaryData-members.html │ │ ├── structRakNet_1_1System__GetTitleBinaryData.html │ │ ├── structRakNet_1_1System__GetTitleBinaryData.png │ │ ├── structRakNet_1_1System__GetTitleRequiredAge-members.html │ │ ├── structRakNet_1_1System__GetTitleRequiredAge.html │ │ ├── structRakNet_1_1System__GetTitleRequiredAge.png │ │ ├── structRakNet_1_1System__PruneAccounts-members.html │ │ ├── structRakNet_1_1System__PruneAccounts.html │ │ ├── structRakNet_1_1System__PruneAccounts.png │ │ ├── structRakNet_1_1System__RegisterProfanity-members.html │ │ ├── structRakNet_1_1System__RegisterProfanity.html │ │ ├── structRakNet_1_1System__RegisterProfanity.png │ │ ├── structRakNet_1_1System__SetEmailAddressValidated-members.html │ │ ├── structRakNet_1_1System__SetEmailAddressValidated.html │ │ ├── structRakNet_1_1System__SetEmailAddressValidated.png │ │ ├── structRakNet_1_1System__UnbanUser-members.html │ │ ├── structRakNet_1_1System__UnbanUser.html │ │ ├── structRakNet_1_1System__UnbanUser.png │ │ ├── structRakNet_1_1UDPProxyClientResultHandler-members.html │ │ ├── structRakNet_1_1UDPProxyClientResultHandler.html │ │ ├── structRakNet_1_1UDPProxyServerResultHandler-members.html │ │ ├── structRakNet_1_1UDPProxyServerResultHandler.html │ │ ├── structRakNet_1_1UnbanMember__Func-members.html │ │ ├── structRakNet_1_1UnbanMember__Func.html │ │ ├── structRakNet_1_1UnbanMember__Func.png │ │ ├── structSQLite3Row-members.html │ │ ├── structSQLite3Row.html │ │ ├── structSQLite3Table-members.html │ │ ├── structSQLite3Table.html │ │ ├── structStrAndBool-members.html │ │ ├── structStrAndBool.html │ │ ├── structThreadPool-members.html │ │ ├── structThreadPool.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ └── tree.html ├── IrrlichtRakNetDemo.jpg ├── PathVariableShot.jpg ├── RPC3Video.htm ├── RakNetLogo.jpg ├── RakNetMajorFeatures.htm ├── RakNetMajorFeatures.html ├── RakNetUML.jpg ├── RakNet_Icon_Final-copy.jpg ├── RaknetManual.css ├── ReplicaManager3Video.htm ├── SQLite3LoggerPluginVideo.html ├── addchatserverfile.jpg ├── addchatserverfilesmall.jpg ├── autopatcher.html ├── bitstreams.html ├── bluetooth.html ├── clientserver.jpg ├── cloudcomputing.html ├── cloudhosting.html ├── cloudhosting1.jpg ├── cloudhosting2.jpg ├── cloudhosting3.jpg ├── cloudhosting4.jpg ├── cloudhosting5.jpg ├── cloudhosting6.jpg ├── cloudhosting7.jpg ├── compilersetup.html ├── compilersetup_xcode.html ├── completeproject.jpg ├── congestioncontrol.html ├── connecting.html ├── connectionFilter.html ├── connectiongraph.html ├── consoleapplication.jpg ├── consoleserver.html ├── crashreporter.html ├── creatingpackets.html ├── csharpunity.html ├── custommemorymanagement.html ├── datacompression.html ├── datareplicationvideo.html ├── debuggingdisconnects.html ├── dependencies.html ├── detailedimplementation.html ├── directorydeltatransfer.html ├── distributednetworkobject.html ├── emailsender.html ├── faq.html ├── filelisttransfer.html ├── fullyconnectedmesh.html ├── fullyconnectedmesh2.html ├── helloworldvideo.html ├── index.html ├── introduction.html ├── iocompletionports.html ├── ipv6support.html ├── irrlichtfpsdemo.html ├── lightweightdatabase.html ├── lobby.html ├── makedll.jpg ├── makedllsmall.jpg ├── marmalade.html ├── masterserver.html ├── memorysynchronizer.html ├── messagefilter.html ├── messagehandler.html ├── multiplayergamecomponents.html ├── multithreadeddebug.jpg ├── multithreadeddebugsmall.jpg ├── natpunchpanel1.html ├── natpunchpanel1.jpg ├── natpunchpanel1small.jpg ├── natpunchpanel2.html ├── natpunchpanel2.jpg ├── natpunchpanel2small.jpg ├── natpunchpanel3.html ├── natpunchpanel3.jpg ├── natpunchpanel3small.jpg ├── natpunchpanel4.html ├── natpunchpanel4.jpg ├── natpunchpanel4small.jpg ├── natpunchpanel5.html ├── natpunchpanel5.jpg ├── natpunchpanel5small.jpg ├── natpunchpanel6.html ├── natpunchpanel6.jpg ├── natpunchpanel6small.jpg ├── natpunchpanel7.html ├── natpunchpanel7.jpg ├── natpunchpanel7small.jpg ├── natpunchthrough.html ├── nattraversalarchitecture.html ├── nattypedetection.html ├── networkidobject.html ├── networkmessages.html ├── networksimulator.html ├── newproject.jpg ├── newprojectsmall.jpg ├── ogre3dinterpdemo.html ├── packetlogger.html ├── phpdirectoryserver.html ├── playerids.html ├── plugininterface.html ├── preprocessordirectives.html ├── preprocessordirectives.jpg ├── preprocessordirectivessmall.jpg ├── programmingtips.html ├── rackspaceinterface.html ├── rakvoice.html ├── readyevent.html ├── receivingpackets.html ├── reliabilitytypes.html ├── replicamanager3.html ├── revisionlog.html ├── router.html ├── rpc4.html ├── samples.html ├── secureconnections.html ├── sendingpackets.html ├── spacer.gif ├── sqlite3loggerplugin.html ├── sqlite3plugin.html ├── startup.html ├── statistics.html ├── steamlobby.html ├── stringcompressor.html ├── swfobject.js ├── swigtutorial.html ├── swigtutorialadditional.html ├── systemaddresses.html ├── systemoverview.html ├── tcpinterface.html ├── teambalancer.html ├── telnet1.jpg ├── telnet2.jpg ├── telnet3.jpg ├── timestamp.jpg ├── timestamping.html ├── tutorial.html ├── tutorial1.jpg ├── tutorial2.jpg ├── tutorial3.jpg ├── tutorial4.jpg ├── tutorial5.jpg ├── tutorial6.jpg ├── tutorial7.jpg ├── tutorialsample1.html ├── tutorialsample2.html ├── tutorialsample3.html ├── twowayauthentication.html ├── useiocompletionports.jpg ├── useiocompletionportssmall.jpg ├── ws2_32include.jpg ├── ws2_32includesmall.jpg ├── xcode_addfiles.jpg ├── xcode_addfiles_newgroup.jpg ├── xcode_changesdk.jpg ├── xcode_headersearchpaths.jpg ├── xcode_library.jpg ├── xcode_libraryname.jpg ├── xcode_librarysmall.jpg ├── xcode_linkwithlibrary.jpg ├── xcode_newcommandlinetool.jpg ├── xcode_newworkspace.jpg ├── xcode_remove_cat.jpg └── xcode_sourcefolder.jpg ├── Lib ├── CMakeLists.txt ├── DLL │ ├── CMakeLists.txt │ ├── DLL.APS │ ├── DLL.rc │ ├── DLL.vcproj │ ├── DLL.vcproj.user │ ├── DLL_vc8.vcproj │ ├── DLL_vc9.vcproj │ ├── readme.txt │ └── resource.h └── LibStatic │ ├── CMakeLists.txt │ ├── LibStatic.vcproj │ ├── LibStatic.vcproj.user │ ├── LibStatic_vc8.vcproj │ ├── LibStatic_vc9.vcproj │ └── readme.txt ├── RakNet_4.0_Eval_Clickthrough_1.1.doc ├── RakNet_VS2008.sln ├── Samples ├── AutoPatcherServer_MySQL │ ├── AutopatcherServerTest_MySQL.cpp │ ├── AutopatcherServer_MySQL.vcproj │ ├── CMakeLists.txt │ └── readme.txt ├── AutopatcherClient │ ├── AutopatcherClient.vcproj │ ├── AutopatcherClient.vcproj.user │ ├── AutopatcherClientTest.cpp │ ├── AutopatcherClient_vc8.vcproj │ ├── AutopatcherClient_vc9.vcproj │ ├── CMakeLists.txt │ ├── Test10.bat │ └── readme.txt ├── AutopatcherClientGFx3.0 │ ├── AutopatcherClientGFx3.0_vc8.vcproj │ ├── AutopatcherClientGFx3.0_vc9.vcproj │ ├── AutopatcherClientGFx3Impl.cpp │ ├── AutopatcherClientGFx3Impl.h │ ├── CMakeLists.txt │ ├── GFxPlayerTinyD3D9.cpp │ ├── Resources │ │ ├── AutopatcherClientGFx3_CS3.fla │ │ └── AutopatcherClientGFx3_CS3.swf │ └── readme.txt ├── AutopatcherClientRestarter │ ├── AutopatcherClientRestarter.vcproj │ ├── AutopatcherClientRestarter.vcproj.user │ ├── AutopatcherClientRestarter_vc8.vcproj │ ├── AutopatcherClientRestarter_vc9.vcproj │ ├── CMakeLists.txt │ ├── main.cpp │ └── readme.txt ├── AutopatcherServer │ ├── AutopatcherServer.vcproj │ ├── AutopatcherServer.vcproj.user │ ├── AutopatcherServerTest.cpp │ ├── AutopatcherServer_vc8.vcproj │ ├── AutopatcherServer_vc9.vcproj │ ├── CMakeLists.txt │ └── readme.txt ├── BigPacketTest │ ├── BigPacketTest.cpp │ ├── BigPacketTest.dsp │ ├── BigPacketTest.txt │ ├── BigPacketTest.vcproj │ ├── BigPacketTest.vcproj.user │ ├── BigPacketTest_vc8.vcproj │ ├── BigPacketTest_vc9.vcproj │ ├── CMakeLists.txt │ └── readme.txt ├── BurstTest │ ├── BurstTest.cpp │ ├── BurstTest_vc9.vcproj │ ├── CMakeLists.txt │ └── readme.txt ├── CMakeLists.txt ├── Chat Example │ ├── CMakeLists.txt │ ├── Chat Example Client.cpp │ ├── Chat Example Client.dsp │ ├── Chat Example Client.vcproj │ ├── Chat Example Client.vcproj.user │ ├── Chat Example Client_vc8.vcproj │ ├── Chat Example Client_vc9.vcproj │ ├── Chat Example Server.cpp │ ├── Chat Example Server.dsp │ ├── Chat Example Server.vcproj │ ├── Chat Example Server.vcproj.user │ ├── Chat Example Server_vc8.vcproj │ ├── Chat Example Server_vc9.vcproj │ └── readme.txt ├── CloudClient │ ├── CMakeLists.txt │ ├── CloudClientSample.cpp │ ├── CloudClient_vc8.vcproj │ ├── CloudClient_vc9.vcproj │ └── readme.txt ├── CloudServer │ ├── CMakeLists.txt │ ├── CloudServerHelper.cpp │ ├── CloudServerHelper.h │ ├── CloudServerSample.cpp │ ├── CloudServer_vc8.vcproj │ ├── CloudServer_vc9.vcproj │ └── readme.txt ├── CloudTest │ ├── CMakeLists.txt │ ├── CloudTest.cpp │ ├── CloudTest_vc8.vcproj │ ├── CloudTest_vc9.vcproj │ └── readme.txt ├── CommandConsoleClient │ ├── CMakeLists.txt │ ├── CommandConsoleClient.vcproj │ ├── CommandConsoleClient.vcproj.user │ ├── CommandConsoleClient_vc8.vcproj │ ├── CommandConsoleClient_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── CommandConsoleServer │ ├── CMakeLists.txt │ ├── CommandConsoleServer.vcproj │ ├── CommandConsoleServer.vcproj.user │ ├── CommandConsoleServer_vc8.vcproj │ ├── CommandConsoleServer_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── ComprehensiveTest │ ├── CMakeLists.txt │ ├── ComprehensiveTest.cpp │ ├── ComprehensiveTest.dsp │ ├── ComprehensiveTest.txt │ ├── ComprehensiveTest.vcproj │ ├── ComprehensiveTest.vcproj.user │ ├── ComprehensiveTest_vc8.vcproj │ ├── ComprehensiveTest_vc9.vcproj │ └── readme.txt ├── CrashRelauncher │ └── CrashRelauncher.bat ├── CrashReporter │ ├── CMakeLists.txt │ ├── CrashReporter.cpp │ ├── CrashReporter.h │ ├── CrashReporter.vcproj │ ├── CrashReporter.vcproj.user │ ├── CrashReporter_vc8.vcproj │ ├── CrashReporter_vc9.vcproj │ ├── SendFileTo.cpp │ ├── SendFileTo.h │ ├── main.cpp │ └── readme.txt ├── CrossConnectionTest │ ├── CMakeLists.txt │ ├── CrossConnectionTest.cpp │ ├── CrossConnectionTest.vcproj │ ├── CrossConnectionTest.vcproj.user │ ├── CrossConnectionTest_vc8.vcproj │ ├── CrossConnectionTest_vc9.vcproj │ └── readme.txt ├── DirectoryDeltaTransfer │ ├── CMakeLists.txt │ ├── DirectoryDeltaTransfer.cpp │ ├── DirectoryDeltaTransfer.vcproj │ ├── DirectoryDeltaTransfer.vcproj.user │ ├── DirectoryDeltaTransferTest.cpp │ ├── DirectoryDeltaTransfer_vc8.vcproj │ ├── DirectoryDeltaTransfer_vc9.vcproj │ └── readme.txt ├── Dropped Connection Test │ ├── CMakeLists.txt │ ├── DroppedConnectionTest.cpp │ ├── DroppedConnectionTest.dsp │ ├── DroppedConnectionTest.vcproj │ ├── DroppedConnectionTest.vcproj.user │ ├── DroppedConnectionTest_vc8.vcproj │ ├── DroppedConnectionTest_vc9.vcproj │ └── readme.txt ├── Encryption │ ├── CMakeLists.txt │ ├── Encryption.cpp │ ├── Encryption.dsp │ ├── Encryption.vcproj │ ├── Encryption.vcproj.user │ ├── Encryption_vc8.vcproj │ ├── Encryption_vc9.vcproj │ └── readme.txt ├── FCMHost │ ├── CMakeLists.txt │ ├── FCM2Host.vcproj │ ├── FCM2HostTest.cpp │ └── readme.txt ├── FCMHostSimultaneous │ ├── CMakeLists.txt │ ├── FCM2HostSimultaneous.vcproj │ ├── FCM2HostSimultaneousTest.cpp │ └── readme.txt ├── FileListTransfer │ ├── CMakeLists.txt │ ├── FileListTransfer.vcproj │ └── main.cpp ├── Flow Control Test │ ├── CMakeLists.txt │ ├── FlowControlTest.cpp │ ├── FlowControlTest.dsp │ ├── FlowControlTest.vcproj │ ├── FlowControlTest.vcproj.user │ ├── FlowControlTest_vc8.vcproj │ ├── FlowControlTest_vc9.vcproj │ └── readme.txt ├── Fully Connected Mesh │ ├── CMakeLists.txt │ ├── FCMTest.cpp │ ├── FullyConnectedMesh.dsp │ ├── FullyConnectedMesh.vcproj │ ├── FullyConnectedMesh.vcproj.user │ ├── FullyConnectedMesh_vc8.vcproj │ ├── FullyConnectedMesh_vc9.vcproj │ └── readme.txt ├── LANServerDiscovery │ ├── CMakeLists.txt │ ├── LANServerDiscovery.cpp │ ├── LANServerDiscovery.dsp │ ├── LANServerDiscovery.txt │ ├── LANServerDiscovery.vcproj │ ├── LANServerDiscovery.vcproj.user │ ├── LANServerDiscovery_vc8.vcproj │ ├── LANServerDiscovery_vc9.vcproj │ └── readme.txt ├── Lobby2Client │ ├── CMakeLists.txt │ ├── Lobby2Client.vcproj │ └── Lobby2ClientSample.cpp ├── Lobby2ClientGFx3.0 │ ├── GFxPlayerTinyD3D9.cpp │ ├── Lobby2ClientGFx3.0.vcproj │ ├── Lobby2ClientGFx3Impl.cpp │ ├── Lobby2ClientGFx3Impl.h │ └── Resources │ │ ├── Art Assets │ │ ├── Check_Username.png │ │ ├── Checkbox_empty.png │ │ ├── Checkmark.png │ │ ├── Dropdown_Menu_Arrow.png │ │ ├── Dropdown_Menu_Bg.png │ │ ├── Dropdown_Menu_bg2.png │ │ ├── Input_Box.png │ │ ├── Input_box2.png │ │ ├── Input_box4.png │ │ ├── Mail_Title_Icon.png │ │ ├── Mail_clan_icon.png │ │ ├── Mail_delete_icon.png │ │ ├── Mail_friend_icon.png │ │ ├── MessageBox_bg.png │ │ ├── Navigation_panel.png │ │ ├── Profile_img_bg.png │ │ ├── Profile_img_temp.png │ │ ├── RakNet_logo.png │ │ ├── RakNet_logo_effect.png │ │ ├── Scaleform_logo.png │ │ ├── arrow.png │ │ ├── button_rollout.png │ │ ├── button_rollover.png │ │ ├── checkbox_check.png │ │ ├── delete_button.png │ │ ├── delete_button_rollover.png │ │ ├── game_bg.png │ │ ├── icon_clan_idle.png │ │ ├── icon_clan_rollover.png │ │ ├── icon_email_idle.png │ │ ├── icon_email_rollover.png │ │ ├── icon_exit_idle.png │ │ ├── icon_exit_rollover.png │ │ ├── icon_friends_idle.png │ │ ├── icon_friends_rollover.png │ │ ├── icon_login_idle.png │ │ ├── icon_login_rollover.png │ │ ├── icon_logout_idle.png │ │ ├── icon_logout_rollover.png │ │ ├── icon_mail.png │ │ ├── icon_mail_rollover.png │ │ ├── icon_profile_idle.png │ │ ├── icon_profile_rollover.png │ │ ├── line.png │ │ ├── message_box_text_bg.png │ │ ├── navigation_blue_panel.png │ │ ├── photo_selector.png │ │ ├── planet.png │ │ ├── profile_bg_tab.png │ │ ├── progress_bar.png │ │ ├── progress_bar_bg.png │ │ ├── scrolling_bar.png │ │ ├── scrolling_bar_bg.png │ │ ├── tab_arrow.png │ │ ├── tab_arrow_back.png │ │ ├── tab_clan.png │ │ ├── tab_email.png │ │ ├── tab_friends.png │ │ ├── tab_login.png │ │ ├── tab_navigation.png │ │ ├── tab_profile.png │ │ └── tab_special.png │ │ ├── Classes │ │ ├── AccountInfo.as │ │ ├── ConsoleWindow.as │ │ ├── LobbyInterface.as │ │ ├── Mail.as │ │ ├── MessageBox.as │ │ ├── NavigationMenu.as │ │ ├── PageNavigator.as │ │ ├── Screen.as │ │ ├── ScreenID.as │ │ ├── ScreenTab.as │ │ ├── ScreenTabManager.as │ │ ├── ScreenWithPageNavigator.as │ │ └── Screens │ │ │ ├── BlockListScreen.as │ │ │ ├── ChangePhoto.as │ │ │ ├── ClanBlockListScreen.as │ │ │ ├── ClanEmailScreen.as │ │ │ ├── ClanGeneralScreen.as │ │ │ ├── ClanInvitedRequestedScreen.as │ │ │ ├── ClanQueryScreen.as │ │ │ ├── ClanRootScreen.as │ │ │ ├── ConnectingToServerScreen.as │ │ │ ├── ConnectionScreen.as │ │ │ ├── CreateClan.as │ │ │ ├── EmailScreen.as │ │ │ ├── EnterCDKeyScreen.as │ │ │ ├── FriendScreen.as │ │ │ ├── LoggedInScreen.as │ │ │ ├── LoggingInScreen.as │ │ │ ├── LoginScreen.as │ │ │ ├── MyClansScreen.as │ │ │ ├── PossibleFriendsScreen.as │ │ │ ├── ProfileScreen.as │ │ │ ├── RecoverPasswordScreen.as │ │ │ ├── RegisterAccountScreen.as │ │ │ ├── RegisterAccountScreen2.as │ │ │ ├── RegisterAccountScreen3.as │ │ │ └── UpdateAccountScreen.as │ │ ├── Lobby2ClientGFx3_CS3.fla │ │ └── Lobby2ClientGFx3_CS3.swf ├── Lobby2Server_PGSQL │ ├── Lobby2Message_PGSQL_CustomizationExample.h │ ├── Lobby2Schema.txt │ ├── Lobby2ServerSample_PGSQL.cpp │ └── Lobby2Server_PGSQL.vcproj ├── LobbyDB_PostgreSQL │ ├── LobbyDB_PostgreSQLTest.cpp │ ├── LobbyDB_PostgreSQLTest.vcproj.user │ ├── LobbyDB_PostgreSQLTest_vc8.vcproj │ ├── LobbyDB_PostgreSQLTest_vc9.vcproj │ └── readme.txt ├── LoopbackPerformanceTest │ ├── LoopbackPerformanceTest.cpp │ ├── LoopbackPerformanceTest.dsp │ ├── LoopbackPerformanceTest.vcproj │ ├── LoopbackPerformanceTest.vcproj.user │ ├── LoopbackPerformanceTest_vc8.vcproj │ ├── LoopbackPerformanceTest_vc9.vcproj │ └── readme.txt ├── Marmalade │ ├── CrossConnectionTest.cpp │ ├── Marmalade.mkb │ └── data │ │ ├── app.config.txt │ │ └── app.icf ├── MasterServer │ ├── CMakeLists.txt │ ├── MasterClient.cpp │ ├── MasterClient.dsp │ ├── MasterClient.h │ ├── MasterClient.vcproj │ ├── MasterClientMain.cpp │ ├── MasterClient_vc8.vcproj │ ├── MasterClient_vc9.vcproj │ ├── MasterCommon.h │ ├── MasterServer.cpp │ ├── MasterServer.dsp │ ├── MasterServer.h │ ├── MasterServer.vcproj │ ├── MasterServerMain.cpp │ ├── MasterServer_vc8.vcproj │ ├── MasterServer_vc9.vcproj │ └── mastercommon.cpp ├── MessageFilter │ ├── CMakeLists.txt │ ├── MessageFilter.vcproj │ ├── MessageFilter.vcproj.user │ ├── MessageFilterTest.cpp │ ├── MessageFilter_vc8.vcproj │ ├── MessageFilter_vc9.vcproj │ └── readme.txt ├── MessageSizeTest │ ├── CMakeLists.txt │ ├── MessageSizeTest.cpp │ ├── MessageSizeTest_vc8.vcproj │ └── MessageSizeTest_vc9.vcproj ├── NATCompleteClient │ ├── CMakeLists.txt │ ├── NATCompleteClient.vcproj │ ├── main.cpp │ └── readme.txt ├── NATCompleteServer │ ├── CMakeLists.txt │ ├── NATCompleteServer.vcproj │ ├── main.cpp │ └── readme.txt ├── OfflineMessagesTest │ ├── CMakeLists.txt │ ├── OfflineMessagesTest.cpp │ ├── OfflineMessagesTest.dsp │ ├── OfflineMessagesTest.txt │ ├── OfflineMessagesTest.vcproj │ ├── OfflineMessagesTest.vcproj.user │ ├── OfflineMessagesTest_vc8.vcproj │ ├── OfflineMessagesTest_vc9.vcproj │ └── readme.txt ├── PHPDirectoryServer2 │ ├── CMakeLists.txt │ ├── DirectoryServer.php │ ├── PHPDirectoryServer2.cpp │ ├── PHPDirectoryServer2.h │ ├── PHPDirectoryServer2.vcproj │ ├── Specification.txt │ ├── lib │ │ ├── PasswordManager.class.php │ │ └── RecordManager.class.php │ └── main.cpp ├── PacketLogger │ ├── CMakeLists.txt │ ├── PacketLoggerTest.cpp │ ├── PacketLoggerTest.dsp │ ├── PacketLoggerTest.vcproj │ ├── PacketLoggerTest.vcproj.user │ ├── PacketLoggerTest_vc8.vcproj │ ├── PacketLoggerTest_vc9.vcproj │ └── readme.txt ├── Ping │ ├── CMakeLists.txt │ ├── Ping.cpp │ ├── Ping.dsp │ ├── Ping.txt │ ├── Ping.vcproj │ ├── Ping.vcproj.user │ ├── Ping_vc8.vcproj │ ├── Ping_vc9.vcproj │ └── readme.txt ├── RPC3 │ ├── CMakeLists.txt │ ├── RPC3.vcproj │ ├── RPC3Sample.cpp │ └── readme.txt ├── RPC4 │ ├── CMakeLists.txt │ ├── RPC4.vcproj │ ├── RPC4Sample.cpp │ └── readme.txt ├── RackspaceConsole │ ├── CMakeLists.txt │ ├── RackspaceConsole.vcproj │ ├── RackspaceConsole.vcproj.user │ ├── RackspaceConsole_vc8.vcproj │ ├── RackspaceConsole_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── RakVoice │ ├── CMakeLists.txt │ ├── RakVoice.txt │ ├── RakVoice.vcproj │ ├── RakVoice.vcproj.user │ ├── RakVoice_vc8.vcproj │ ├── RakVoice_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── RakVoiceDSound │ ├── CMakeLists.txt │ ├── DSoundVoiceAdapter.cpp │ ├── DSoundVoiceAdapter.h │ ├── RakVoiceDSound_vc8.vcproj │ ├── RakVoiceDSound_vc9.vcproj │ └── main.cpp ├── RakVoiceFMOD │ ├── CMakeLists.txt │ ├── FMODVoiceAdapter.cpp │ ├── FMODVoiceAdapter.h │ ├── RakVoiceFMOD.txt │ ├── RakVoiceFMOD.vcproj │ ├── RakVoiceFMOD.vcproj.user │ ├── RakVoiceFMOD_vc8.vcproj │ ├── RakVoiceFMOD_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── RankingServerDB │ ├── RankingServerDBTest.cpp │ ├── RankingServerDBTest.vcproj.user │ ├── RankingServerDBTest_vc8.vcproj │ ├── RankingServerDBTest_vc9.vcproj │ └── readme.txt ├── RankingServerDBTest │ ├── RankingServerDBTest.cpp │ ├── RankingServerDBTest.vcproj.user │ ├── RankingServerDBTest_vc8.vcproj │ ├── RankingServerDBTest_vc9.vcproj │ └── readme.txt ├── ReadyEvent │ ├── ReadyEvent.vcproj.user │ ├── ReadyEventSample.cpp │ ├── ReadyEvent_vc8.vcproj │ ├── ReadyEvent_vc9.vcproj │ └── readme.txt ├── Reliable Ordered Test │ ├── CMakeLists.txt │ ├── ReliableOrderedTest.cpp │ ├── ReliableOrderedTest.dsp │ ├── ReliableOrderedTest.vcproj │ ├── ReliableOrderedTest.vcproj.user │ ├── ReliableOrderedTest_vc8.vcproj │ ├── ReliableOrderedTest_vc9.vcproj │ └── readme.txt ├── ReplicaManager3 │ ├── CMakeLists.txt │ ├── ReplicaManager3.vcproj │ ├── main.cpp │ └── readme.txt ├── Rooms │ ├── Rooms.vcproj │ ├── RoomsSample.cpp │ └── readme.txt ├── RoomsBrowserGFx3 │ ├── GFxPlayerTinyD3D9.cpp │ ├── RakNet │ │ ├── RoomsBrowserGFx3_RakNet.cpp │ │ ├── RoomsBrowserGFx3_RakNet.h │ │ ├── RoomsBrowserGFx3_RakNet.vcproj │ │ └── readme.txt │ ├── Resources │ │ ├── Accounts_RakNet.as │ │ ├── ConnectToServer_RakNet.as │ │ ├── CreateRoom.as │ │ ├── GlobalNotifications.as │ │ ├── InRoom.as │ │ ├── LANConnection.as │ │ ├── Lobby.as │ │ ├── Main.as │ │ ├── ManageFriends_PC.as │ │ ├── RoomsBrowserGFx3.fla │ │ └── RoomsBrowserGFx3.swf │ ├── RoomsBrowserGFx3.cpp │ └── RoomsBrowserGFx3.h ├── Router2 │ ├── CMakeLists.txt │ ├── Router2Sample.cpp │ ├── Router2_vc8.vcproj │ ├── Router2_vc9.vcproj │ └── readme.txt ├── SendEmail │ ├── CMakeLists.txt │ ├── SendEmail.vcproj │ ├── SendEmail.vcproj.user │ ├── SendEmail_vc8.vcproj │ ├── SendEmail_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── ServerClientTest2 │ ├── CMakeLists.txt │ ├── ServerClientTest2.cpp │ ├── ServerClientTest2.vcproj │ ├── ServerClientTest2_vc8.vcproj │ ├── ServerClientTest2_vc9.vcproj │ └── readme.txt ├── SteamLobby │ ├── SteamLobby.vcproj │ ├── main.cpp │ └── readme.txt ├── TeamBalancer │ ├── CMakeLists.txt │ ├── TeamBalancerTest.cpp │ ├── TeamBalancer_vc8.vcproj │ ├── TeamBalancer_vc9.vcproj │ └── readme.txt ├── TestDLL │ ├── CMakeLists.txt │ ├── TestDLL.vcproj │ ├── TestDLL.vcproj.user │ ├── TestDLL_vc8.vcproj │ ├── TestDLL_vc9.vcproj │ ├── main.cpp │ └── readme.txt ├── Tests │ ├── CMakeLists.txt │ ├── CommonFunctions.cpp │ ├── CommonFunctions.h │ ├── ComprehensiveConvertTest.cpp │ ├── ComprehensiveConvertTest.h │ ├── ConnectWithSocketTest.cpp │ ├── ConnectWithSocketTest.h │ ├── CrossConnectionConvertTest.cpp │ ├── CrossConnectionConvertTest.h │ ├── DebugTools.cpp │ ├── DebugTools.h │ ├── DroppedConnectionConvertTest.cpp │ ├── DroppedConnectionConvertTest.h │ ├── EightPeerTest.cpp │ ├── EightPeerTest.h │ ├── IncludeAllTests.h │ ├── LocalIsConnectedTest.cpp │ ├── LocalIsConnectedTest.h │ ├── ManyClientsOneServerBlockingTest.cpp │ ├── ManyClientsOneServerBlockingTest.h │ ├── ManyClientsOneServerDeallocateBlockingTest.cpp │ ├── ManyClientsOneServerDeallocateBlockingTest.h │ ├── ManyClientsOneServerDeallocateTest.cpp │ ├── ManyClientsOneServerDeallocateTest.h │ ├── ManyClientsOneServerNonBlockingTest.cpp │ ├── ManyClientsOneServerNonBlockingTest.h │ ├── MaximumConnectTest.cpp │ ├── MaximumConnectTest.h │ ├── MiscellaneousTestsTest.cpp │ ├── MiscellaneousTestsTest.h │ ├── OfflineMessagesConvertTest.cpp │ ├── OfflineMessagesConvertTest.h │ ├── PacketAndLowLevelTestsTest.cpp │ ├── PacketAndLowLevelTestsTest.h │ ├── PacketChangerPlugin.cpp │ ├── PacketChangerPlugin.h │ ├── PacketDropPlugin.cpp │ ├── PacketDropPlugin.h │ ├── PeerConnectDisconnectTest.cpp │ ├── PeerConnectDisconnectTest.h │ ├── PeerConnectDisconnectWithCancelPendingTest.cpp │ ├── PeerConnectDisconnectWithCancelPendingTest.h │ ├── PingTestsTest.cpp │ ├── PingTestsTest.h │ ├── RakTimer.cpp │ ├── RakTimer.h │ ├── ReliableOrderedConvertedTest.cpp │ ├── ReliableOrderedConvertedTest.h │ ├── SecurityFunctionsTest.cpp │ ├── SecurityFunctionsTest.h │ ├── SystemAddressAndGuidTest.cpp │ ├── SystemAddressAndGuidTest.h │ ├── TestHelpers.cpp │ ├── TestHelpers.h │ ├── TestInterface.cpp │ ├── TestInterface.h │ ├── Tests.cpp │ └── Tests.vcproj ├── ThreadTest │ ├── CMakeLists.txt │ ├── ThreadTest.cpp │ ├── ThreadTest.vcproj │ ├── ThreadTest.vcproj.user │ ├── ThreadTest_vc8.vcproj │ ├── ThreadTest_vc9.vcproj │ └── readme.txt ├── Timestamping │ ├── CMakeLists.txt │ ├── Timestamping.cpp │ ├── Timestamping.dsp │ ├── Timestamping.txt │ ├── Timestamping.vcproj │ ├── Timestamping.vcproj.user │ ├── Timestamping_vc8.vcproj │ ├── Timestamping_vc9.vcproj │ └── readme.txt ├── TitleValidationDB_PostgreSQL │ ├── CMakeLists.txt │ ├── TitleValidationDB_PostgreSQLTest.cpp │ ├── TitleValidationDB_PostgreSQLTest.vcproj.user │ ├── TitleValidationDB_PostgreSQLTest_vc8.vcproj │ ├── TitleValidationDB_PostgreSQLTest_vc9.vcproj │ └── readme.txt ├── TwoWayAuthentication │ ├── CMakeLists.txt │ ├── TwoWayAuthentication.vcproj │ ├── TwoWayAuthenticationTest.cpp │ └── readme.txt ├── UDPForwarder │ ├── CMakeLists.txt │ ├── UDPForwarder.vcproj │ ├── main.cpp │ └── readme.txt └── iOS │ └── ChatClient │ ├── ChatClient.xcodeproj │ └── project.pbxproj │ ├── ChatClient │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── ChatClient-Info.plist │ ├── ChatClient-Prefix.pch │ ├── ChatServerDetailsProtocol.h │ ├── ServerDetailsViewController.h │ ├── ServerDetailsViewController.m │ ├── ServerDetailsViewController.xib │ ├── ViewController.h │ ├── ViewController.mm │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m │ └── readme.txt ├── Source ├── AutopatcherPatchContext.h ├── AutopatcherRepositoryInterface.h ├── BitStream.cpp ├── BitStream.h ├── CCRakNetSlidingWindow.cpp ├── CCRakNetSlidingWindow.h ├── CCRakNetUDT.cpp ├── CCRakNetUDT.h ├── CMakeLists.txt ├── CheckSum.cpp ├── CheckSum.h ├── CloudClient.cpp ├── CloudClient.h ├── CloudCommon.cpp ├── CloudCommon.h ├── CloudServer.cpp ├── CloudServer.h ├── CommandParserInterface.cpp ├── CommandParserInterface.h ├── ConnectionGraph2.cpp ├── ConnectionGraph2.h ├── ConsoleServer.cpp ├── ConsoleServer.h ├── DS_BPlusTree.h ├── DS_BinarySearchTree.h ├── DS_BytePool.cpp ├── DS_BytePool.h ├── DS_ByteQueue.cpp ├── DS_ByteQueue.h ├── DS_Hash.h ├── DS_Heap.h ├── DS_HuffmanEncodingTree.cpp ├── DS_HuffmanEncodingTree.h ├── DS_HuffmanEncodingTreeFactory.h ├── DS_HuffmanEncodingTreeNode.h ├── DS_LinkedList.h ├── DS_List.h ├── DS_Map.h ├── DS_MemoryPool.h ├── DS_Multilist.h ├── DS_OrderedChannelHeap.h ├── DS_OrderedList.h ├── DS_Queue.h ├── DS_QueueLinkedList.h ├── DS_RangeList.h ├── DS_Table.cpp ├── DS_Table.h ├── DS_ThreadsafeAllocatingQueue.h ├── DS_Tree.h ├── DS_WeightedGraph.h ├── DataCompressor.cpp ├── DataCompressor.h ├── DirectoryDeltaTransfer.cpp ├── DirectoryDeltaTransfer.h ├── DynDNS.cpp ├── DynDNS.h ├── EmailSender.cpp ├── EmailSender.h ├── EncodeClassName.cpp ├── EpochTimeToString.cpp ├── EpochTimeToString.h ├── Export.h ├── FileList.cpp ├── FileList.h ├── FileListNodeContext.h ├── FileListTransfer.cpp ├── FileListTransfer.h ├── FileListTransferCBInterface.h ├── FileOperations.cpp ├── FileOperations.h ├── FormatString.cpp ├── FormatString.h ├── FullyConnectedMesh2.cpp ├── FullyConnectedMesh2.h ├── GetTime.cpp ├── GetTime.h ├── Getche.cpp ├── Getche.h ├── Gets.cpp ├── Gets.h ├── GridSectorizer.cpp ├── GridSectorizer.h ├── HTTPConnection.cpp ├── HTTPConnection.h ├── IncrementalReadInterface.cpp ├── IncrementalReadInterface.h ├── InternalPacket.h ├── Itoa.cpp ├── Itoa.h ├── Kbhit.h ├── LinuxStrings.cpp ├── LinuxStrings.h ├── LocklessTypes.cpp ├── LocklessTypes.h ├── LogCommandParser.cpp ├── LogCommandParser.h ├── MTUSize.h ├── MessageFilter.cpp ├── MessageFilter.h ├── MessageIdentifiers.h ├── NatPunchthroughClient.cpp ├── NatPunchthroughClient.h ├── NatPunchthroughServer.cpp ├── NatPunchthroughServer.h ├── NatTypeDetectionClient.cpp ├── NatTypeDetectionClient.h ├── NatTypeDetectionCommon.cpp ├── NatTypeDetectionCommon.h ├── NatTypeDetectionServer.cpp ├── NatTypeDetectionServer.h ├── NativeFeatureIncludes.h ├── NativeFeatureIncludesOverrides.h ├── NativeTypes.h ├── NetworkIDManager.cpp ├── NetworkIDManager.h ├── NetworkIDObject.cpp ├── NetworkIDObject.h ├── PS3Includes.h ├── PacketConsoleLogger.cpp ├── PacketConsoleLogger.h ├── PacketFileLogger.cpp ├── PacketFileLogger.h ├── PacketLogger.cpp ├── PacketLogger.h ├── PacketOutputWindowLogger.cpp ├── PacketOutputWindowLogger.h ├── PacketPool.h ├── PacketPriority.h ├── PacketizedTCP.cpp ├── PacketizedTCP.h ├── PluginInterface2.cpp ├── PluginInterface2.h ├── RPC4Plugin.cpp ├── RPC4Plugin.h ├── Rackspace.cpp ├── Rackspace.h ├── RakAlloca.h ├── RakAssert.h ├── RakMemoryOverride.cpp ├── RakMemoryOverride.h ├── RakNet.vcproj ├── RakNetCommandParser.cpp ├── RakNetCommandParser.h ├── RakNetDefines.h ├── RakNetDefinesOverrides.h ├── RakNetSmartPtr.h ├── RakNetSocket.cpp ├── RakNetSocket.h ├── RakNetStatistics.cpp ├── RakNetStatistics.h ├── RakNetTime.h ├── RakNetTransport2.cpp ├── RakNetTransport2.h ├── RakNetTypes.cpp ├── RakNetTypes.h ├── RakNetVersion.h ├── RakNet_vc8.vcproj ├── RakNet_vc9.vcproj ├── RakPeer.cpp ├── RakPeer.h ├── RakPeerInterface.h ├── RakSleep.cpp ├── RakSleep.h ├── RakString.cpp ├── RakString.h ├── RakThread.cpp ├── RakThread.h ├── RakWString.cpp ├── RakWString.h ├── Rand.cpp ├── Rand.h ├── ReadyEvent.cpp ├── ReadyEvent.h ├── RefCountedObj.h ├── ReliabilityLayer.cpp ├── ReliabilityLayer.h ├── ReplicaEnums.h ├── ReplicaManager3.cpp ├── ReplicaManager3.h ├── Router2.cpp ├── Router2.h ├── SHA1.cpp ├── SHA1.h ├── SecureHandshake.cpp ├── SecureHandshake.h ├── SendToThread.cpp ├── SendToThread.h ├── SignaledEvent.cpp ├── SignaledEvent.h ├── SimpleMutex.cpp ├── SimpleMutex.h ├── SimpleTCPServer.h ├── SingleProducerConsumer.h ├── SocketDefines.h ├── SocketIncludes.h ├── SocketLayer.cpp ├── SocketLayer.h ├── StringCompressor.cpp ├── StringCompressor.h ├── StringTable.cpp ├── StringTable.h ├── SuperFastHash.cpp ├── SuperFastHash.h ├── TCPInterface.cpp ├── TCPInterface.h ├── TableSerializer.cpp ├── TableSerializer.h ├── TeamBalancer.cpp ├── TeamBalancer.h ├── TelnetTransport.cpp ├── TelnetTransport.h ├── ThreadPool.h ├── ThreadsafePacketLogger.cpp ├── ThreadsafePacketLogger.h ├── TransportInterface.h ├── TwoWayAuthentication.cpp ├── TwoWayAuthentication.h ├── UDPForwarder.cpp ├── UDPForwarder.h ├── UDPProxyClient.cpp ├── UDPProxyClient.h ├── UDPProxyCommon.h ├── UDPProxyCoordinator.cpp ├── UDPProxyCoordinator.h ├── UDPProxyServer.cpp ├── UDPProxyServer.h ├── VariableDeltaSerializer.cpp ├── VariableDeltaSerializer.h ├── VariableListDeltaTracker.cpp ├── VariableListDeltaTracker.h ├── VariadicSQLParser.cpp ├── VariadicSQLParser.h ├── VitaIncludes.cpp ├── VitaIncludes.h ├── WSAStartupSingleton.cpp ├── WSAStartupSingleton.h ├── WindowsIncludes.h ├── XBox360Includes.h ├── _FindFirst.cpp ├── _FindFirst.h ├── cat │ ├── AllCodec.hpp │ ├── AllCommon.hpp │ ├── AllCrypt.hpp │ ├── AllFramework.hpp │ ├── AllGraphics.hpp │ ├── AllMath.hpp │ ├── AllTunnel.hpp │ ├── Config.hpp │ ├── LIBCAT.README.txt │ ├── Platform.hpp │ ├── Singleton.hpp │ ├── asm │ │ └── big_x64_asm.hpp │ ├── codec │ │ ├── ChatText.stats │ │ └── RangeCoder.hpp │ ├── crypt │ │ ├── SecureCompare.hpp │ │ ├── cookie │ │ │ └── CookieJar.hpp │ │ ├── hash │ │ │ ├── HMAC_MD5.hpp │ │ │ ├── ICryptHash.hpp │ │ │ └── Skein.hpp │ │ ├── pass │ │ │ └── Passwords.hpp │ │ ├── rand │ │ │ └── Fortuna.hpp │ │ ├── symmetric │ │ │ └── ChaCha.hpp │ │ └── tunnel │ │ │ ├── AuthenticatedEncryption.hpp │ │ │ ├── EasyHandshake.hpp │ │ │ ├── KeyAgreement.hpp │ │ │ ├── KeyAgreementInitiator.hpp │ │ │ ├── KeyAgreementResponder.hpp │ │ │ └── KeyMaker.hpp │ ├── db │ │ ├── BombayTable.hpp │ │ └── BombayTableIndex.hpp │ ├── gfx │ │ ├── LoadBitmap.hpp │ │ ├── LoadPNG.hpp │ │ ├── Matrix.hpp │ │ ├── Quaternion.hpp │ │ ├── Scalar.hpp │ │ └── Vector.hpp │ ├── hash │ │ └── MurmurHash2.hpp │ ├── io │ │ ├── AsyncBuffer.hpp │ │ ├── Base64.hpp │ │ ├── Logging.hpp │ │ ├── MMapFile.hpp │ │ ├── PackageManager.hpp │ │ ├── Settings.hpp │ │ └── ThreadPoolFiles.hpp │ ├── lang │ │ └── Strings.hpp │ ├── lib │ │ └── cat │ │ │ ├── big_x64.lib │ │ │ ├── big_x64.o │ │ │ └── big_x64.obj │ ├── math │ │ ├── BigMontgomery.hpp │ │ ├── BigPseudoMersenne.hpp │ │ ├── BigRTL.hpp │ │ ├── BigTwistedEdwards.hpp │ │ ├── BitMath.hpp │ │ └── Legs.hpp │ ├── net │ │ ├── DNSClient.hpp │ │ ├── Sockets.hpp │ │ ├── SphynxClient.hpp │ │ ├── SphynxCollexion.hpp │ │ ├── SphynxServer.hpp │ │ ├── SphynxTransport.hpp │ │ ├── ThreadPoolSockets.hpp │ │ ├── bsd │ │ │ ├── TCPClient.hpp │ │ │ ├── TCPConnection.hpp │ │ │ ├── TCPServer.hpp │ │ │ └── UDPEndpoint.hpp │ │ ├── generic │ │ │ ├── TCPClient.hpp │ │ │ ├── TCPConnection.hpp │ │ │ ├── TCPServer.hpp │ │ │ └── UDPEndpoint.hpp │ │ ├── linux │ │ │ ├── TCPClient.hpp │ │ │ ├── TCPConnection.hpp │ │ │ ├── TCPServer.hpp │ │ │ └── UDPEndpoint.hpp │ │ └── win │ │ │ ├── TCPClient.hpp │ │ │ ├── TCPConnection.hpp │ │ │ ├── TCPConnexion.hpp │ │ │ ├── TCPServer.hpp │ │ │ └── UDPEndpoint.hpp │ ├── parse │ │ ├── BitStream.hpp │ │ ├── BufferStream.hpp │ │ ├── BufferTok.hpp │ │ ├── FastDelegate.h │ │ └── MessageRouter.hpp │ ├── port │ │ ├── AlignedAlloc.hpp │ │ ├── EndianNeutral.hpp │ │ ├── FastDelegate.h │ │ └── WindowsInclude.hpp │ ├── rand │ │ ├── IRandom.hpp │ │ ├── MersenneTwister.hpp │ │ └── StdRand.hpp │ ├── src │ │ ├── Framework.cpp │ │ ├── codec │ │ │ └── RangeCoder.cpp │ │ ├── crypt │ │ │ ├── SecureCompare.cpp │ │ │ ├── cookie │ │ │ │ └── CookieJar.cpp │ │ │ ├── hash │ │ │ │ ├── HMAC_MD5.cpp │ │ │ │ ├── Skein.cpp │ │ │ │ ├── Skein256.cpp │ │ │ │ └── Skein512.cpp │ │ │ ├── pass │ │ │ │ └── Passwords.cpp │ │ │ ├── privatekey │ │ │ │ └── ChaCha.cpp │ │ │ ├── rand │ │ │ │ ├── EntropyGeneric.cpp │ │ │ │ ├── EntropyLinux.cpp │ │ │ │ ├── EntropyWindows.cpp │ │ │ │ ├── EntropyWindowsCE.cpp │ │ │ │ └── Fortuna.cpp │ │ │ └── tunnel │ │ │ │ ├── AuthenticatedEncryption.cpp │ │ │ │ ├── EasyHandshake.cpp │ │ │ │ ├── KeyAgreement.cpp │ │ │ │ ├── KeyAgreementInitiator.cpp │ │ │ │ ├── KeyAgreementResponder.cpp │ │ │ │ └── KeyMaker.cpp │ │ ├── db │ │ │ ├── BombayTable.cpp │ │ │ └── BombayTableIndex.cpp │ │ ├── gfx │ │ │ ├── LoadBitmap.cpp │ │ │ ├── LoadPNG.cpp │ │ │ ├── Matrix.cpp │ │ │ ├── Quaternion.cpp │ │ │ ├── Scalar.cpp │ │ │ └── Vector.cpp │ │ ├── hash │ │ │ └── MurmurHash2.cpp │ │ ├── io │ │ │ ├── Base64.cpp │ │ │ ├── Logging.cpp │ │ │ ├── MMapFile.cpp │ │ │ ├── PackageManager.cpp │ │ │ ├── Settings.cpp │ │ │ └── ThreadPoolFiles.cpp │ │ ├── lang │ │ │ └── Strings.cpp │ │ ├── math │ │ │ ├── BigMontgomery.cpp │ │ │ ├── BigPseudoMersenne.cpp │ │ │ ├── BigRTL.cpp │ │ │ ├── BigTwistedEdwards.cpp │ │ │ ├── big_x64_elf.asm │ │ │ ├── big_x64_mscoff.asm │ │ │ ├── edward │ │ │ │ ├── addsub │ │ │ │ │ ├── PtAdd.cpp │ │ │ │ │ ├── PtDouble.cpp │ │ │ │ │ ├── PtDoubleZ1.cpp │ │ │ │ │ ├── PtNegate.cpp │ │ │ │ │ └── PtSubtract.cpp │ │ │ │ ├── io │ │ │ │ │ ├── PtFillRandomX.cpp │ │ │ │ │ ├── PtGenerate.cpp │ │ │ │ │ ├── PtNormalize.cpp │ │ │ │ │ ├── PtSolveAffineY.cpp │ │ │ │ │ ├── PtValidAffine.cpp │ │ │ │ │ ├── SaveAffineX.cpp │ │ │ │ │ └── SaveAffineXY.cpp │ │ │ │ └── mul │ │ │ │ │ ├── PtMultiply.cpp │ │ │ │ │ ├── PtMultiplyPrecomp.cpp │ │ │ │ │ ├── PtPrecompAddSub.cpp │ │ │ │ │ └── RefMul.cpp │ │ │ ├── mersenne │ │ │ │ ├── addsub │ │ │ │ │ ├── MrAdd.cpp │ │ │ │ │ ├── MrNegate.cpp │ │ │ │ │ └── MrSubtract.cpp │ │ │ │ ├── expm │ │ │ │ │ ├── MrInvert.cpp │ │ │ │ │ └── MrSquareRoot.cpp │ │ │ │ ├── mul │ │ │ │ │ ├── MrMultiply.cpp │ │ │ │ │ ├── MrMultiplyX.cpp │ │ │ │ │ └── MrSquare.cpp │ │ │ │ └── reduce │ │ │ │ │ ├── MrReduce.cpp │ │ │ │ │ └── MrReduceProduct.cpp │ │ │ ├── montgomery │ │ │ │ ├── addsub │ │ │ │ │ ├── MonAdd.cpp │ │ │ │ │ ├── MonNegate.cpp │ │ │ │ │ └── MonSubtract.cpp │ │ │ │ ├── expm │ │ │ │ │ ├── IsRabinMillerPrime.cpp │ │ │ │ │ └── MonExpMod.cpp │ │ │ │ ├── mul │ │ │ │ │ ├── MonMultiply.cpp │ │ │ │ │ └── MonSquare.cpp │ │ │ │ └── reduce │ │ │ │ │ ├── MonInput.cpp │ │ │ │ │ ├── MonOutput.cpp │ │ │ │ │ └── MonReduceProduct.cpp │ │ │ └── rtl │ │ │ │ ├── addsub │ │ │ │ ├── Add.cpp │ │ │ │ ├── Add1.cpp │ │ │ │ ├── AddX.cpp │ │ │ │ ├── Compare.cpp │ │ │ │ ├── Double.cpp │ │ │ │ ├── DoubleAdd.cpp │ │ │ │ ├── Negate.cpp │ │ │ │ ├── Shift.cpp │ │ │ │ ├── Subtract.cpp │ │ │ │ └── SubtractX.cpp │ │ │ │ ├── div │ │ │ │ ├── Divide.cpp │ │ │ │ ├── DivideAsm64.cpp │ │ │ │ ├── DivideGeneric.cpp │ │ │ │ ├── EatTrailingZeroes.cpp │ │ │ │ ├── ModularInverse.cpp │ │ │ │ ├── MulMod.cpp │ │ │ │ └── MultiplicativeInverse.cpp │ │ │ │ ├── io │ │ │ │ ├── Load.cpp │ │ │ │ ├── LoadString.cpp │ │ │ │ └── Save.cpp │ │ │ │ └── mul │ │ │ │ ├── CombaMul.cpp │ │ │ │ ├── Multiply.cpp │ │ │ │ ├── MultiplyX.cpp │ │ │ │ ├── MultiplyXAdd.cpp │ │ │ │ └── Square.cpp │ │ ├── net │ │ │ ├── DNSClient.cpp │ │ │ ├── Sockets.cpp │ │ │ ├── SphynxClient.cpp │ │ │ ├── SphynxServer.cpp │ │ │ ├── SphynxTransport.cpp │ │ │ ├── ThreadPoolSockets.cpp │ │ │ ├── bsd │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ ├── generic │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ ├── linux │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ └── win │ │ │ │ ├── TCPClient.cpp │ │ │ │ ├── TCPConnection.cpp │ │ │ │ ├── TCPConnexion.cpp │ │ │ │ ├── TCPServer.cpp │ │ │ │ └── UDPEndpoint.cpp │ │ ├── parse │ │ │ ├── BitStream.cpp │ │ │ ├── BufferTok.cpp │ │ │ └── MessageRouter.cpp │ │ ├── port │ │ │ ├── AlignedAlloc.cpp │ │ │ └── EndianNeutral.cpp │ │ ├── rand │ │ │ ├── MersenneTwister.cpp │ │ │ └── StdRand.cpp │ │ ├── threads │ │ │ ├── Mutex.cpp │ │ │ ├── RWLock.cpp │ │ │ ├── RegionAllocator.cpp │ │ │ ├── Thread.cpp │ │ │ ├── ThreadPool.cpp │ │ │ └── WaitableFlag.cpp │ │ └── time │ │ │ └── Clock.cpp │ ├── threads │ │ ├── Atomic.hpp │ │ ├── LocklessFIFO.hpp │ │ ├── Mutex.hpp │ │ ├── RWLock.hpp │ │ ├── RegionAllocator.hpp │ │ ├── Thread.hpp │ │ ├── ThreadPool.hpp │ │ └── WaitableFlag.hpp │ └── time │ │ └── Clock.hpp ├── gettimeofday.cpp ├── gettimeofday.h ├── rdlmalloc-options.h ├── rdlmalloc.cpp └── rdlmalloc.h └── readme.txt /3.x_to_4.x_upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/3.x_to_4.x_upgrade.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CmakeIncludes/CmakeMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/CmakeMacros.txt -------------------------------------------------------------------------------- /CmakeIncludes/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindBoost.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindFMODEx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindFMODEx.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindIrrKlang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindIrrKlang.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindIrrlicht.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindIrrlicht.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindMacros.txt -------------------------------------------------------------------------------- /CmakeIncludes/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindMySQL.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindPortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindPortAudio.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindPostgreSQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindPostgreSQL.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindSpeex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindSpeex.cmake -------------------------------------------------------------------------------- /CmakeIncludes/FindSpeexDSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/FindSpeexDSP.cmake -------------------------------------------------------------------------------- /CmakeIncludes/Ogre3D/FindOGRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/Ogre3D/FindOGRE.cmake -------------------------------------------------------------------------------- /CmakeIncludes/Ogre3D/FindOIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/CmakeIncludes/Ogre3D/FindOIS.cmake -------------------------------------------------------------------------------- /DependentExtensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/CMakeLists.txt -------------------------------------------------------------------------------- /DependentExtensions/Lobby2/Steam/Lobby2Client_Steam.cpp: -------------------------------------------------------------------------------- 1 | // Code is in Lobby2Client_Steam_Impl.cpp -------------------------------------------------------------------------------- /DependentExtensions/Ogre3DInterpDemo/OgreResources/UpgradeMesh.bat: -------------------------------------------------------------------------------- 1 | OgreMeshUpgrade.exe -d3d -b -t %1 -------------------------------------------------------------------------------- /DependentExtensions/RPC3/RPC3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/RPC3/RPC3.cpp -------------------------------------------------------------------------------- /DependentExtensions/RPC3/RPC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/RPC3/RPC3.h -------------------------------------------------------------------------------- /DependentExtensions/RPC3/RPC3_Boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/RPC3/RPC3_Boost.h -------------------------------------------------------------------------------- /DependentExtensions/RakVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/RakVoice.cpp -------------------------------------------------------------------------------- /DependentExtensions/RakVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/RakVoice.h -------------------------------------------------------------------------------- /DependentExtensions/Swig/MakeSwig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/Swig/MakeSwig.bat -------------------------------------------------------------------------------- /DependentExtensions/Swig/MakeSwig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/Swig/MakeSwig.sh -------------------------------------------------------------------------------- /DependentExtensions/XML/xmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/XML/xmlParser.cpp -------------------------------------------------------------------------------- /DependentExtensions/XML/xmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/XML/xmlParser.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/README -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/aclocal.m4 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/ansi2knr.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/ansi2knr.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/cderror.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/cdjpeg.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/cdjpeg.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/change.log -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/cjpeg.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/cjpeg.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/ckconfig.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/config.sub -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/configure -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/depcomp -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/djpeg.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/djpeg.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/example.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/install-sh -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jaricom.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcapimin.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcapistd.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcarith.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jccoefct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jccolor.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcdctmgr.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jchuff.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcinit.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcmainct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcmarker.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcmaster.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcomapi.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jconfig.dj -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jconfig.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jconfig.st -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jconfig.vc -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcparam.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcprepct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jcsample.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jctrans.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdapimin.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdapistd.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdarith.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdatadst.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdatasrc.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdcoefct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdcolor.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdct.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jddctmgr.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdhuff.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdinput.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdmainct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdmarker.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdmaster.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdmerge.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdpostct.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdsample.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jdtrans.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jerror.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jerror.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jfdctflt.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jfdctfst.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jfdctint.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jidctflt.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jidctfst.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jidctint.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jinclude.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemansi.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemdos.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemmac.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemmgr.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemname.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemnobs.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmemsys.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jmorecfg.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jpegint.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jpeglib.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jpegtran.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jpegtran.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jquant1.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jquant2.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jutils.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/jversion.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_7.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/ltmain.sh -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/makvms.opt -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/memsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/memsrc.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/missing -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdbmp.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdcolmap.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdgif.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdjpgcom.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdjpgcom.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdppm.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdrle.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdswitch.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/rdtarga.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/readme.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/readme.dos -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/transupp.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/transupp.h -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/usage.txt -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wizard.txt -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrbmp.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrgif.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrjpgcom.1 -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrjpgcom.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrppm.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrrle.c -------------------------------------------------------------------------------- /DependentExtensions/jpeg-7/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/jpeg-7/wrtarga.c -------------------------------------------------------------------------------- /DependentExtensions/miniupnpc-1.5/VERSION: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /DependentExtensions/openssl-1.0.0d/bin/PEM/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /DependentExtensions/openssl-1.0.0d/bin/PEM/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /DependentExtensions/openssl-1.0.0d/bin/PEM/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /DependentExtensions/openssl-1.0.0d/bin/PEM/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /DependentExtensions/speex-1.1.12/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /DependentExtensions/speex-1.1.12/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/DependentExtensions/speex-1.1.12/TODO -------------------------------------------------------------------------------- /DependentExtensions/speex-1.1.12/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /Help/0SleepTimer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/0SleepTimer.jpg -------------------------------------------------------------------------------- /Help/0SleepTimerSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/0SleepTimerSmall.jpg -------------------------------------------------------------------------------- /Help/30SleepTimer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/30SleepTimer.jpg -------------------------------------------------------------------------------- /Help/30SleepTimerSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/30SleepTimerSmall.jpg -------------------------------------------------------------------------------- /Help/AutopatcherVideo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/AutopatcherVideo.htm -------------------------------------------------------------------------------- /Help/CSharpBuildConfiguration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/CSharpBuildConfiguration.jpg -------------------------------------------------------------------------------- /Help/DirectoryServerListing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/DirectoryServerListing.jpg -------------------------------------------------------------------------------- /Help/Doxygen/Manual.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/Manual.chm -------------------------------------------------------------------------------- /Help/Doxygen/html/BitStream_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/BitStream_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/CloudClient_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/CloudClient_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/CloudServer_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/CloudServer_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__Heap_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__Heap_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__List_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__List_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__Map_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__Map_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__Queue_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__Queue_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__Table_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__Table_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DS__Tree_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DS__Tree_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/DynDNS_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/DynDNS_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/EmailSender_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/EmailSender_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/FileList_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/FileList_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/GetTime_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/GetTime_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/MTUSize_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/MTUSize_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RPC3_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RPC3_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RPC4Plugin_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RPC4Plugin_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/Rackspace_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/Rackspace_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RakNetTypes_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RakNetTypes_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RakPeer_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RakPeer_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RakVoice_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RakVoice_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/Rand_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/Rand_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/ReadyEvent_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ReadyEvent_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/RoomsPlugin_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/RoomsPlugin_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/Router2_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/Router2_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/SimpleMutex_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/SimpleMutex_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/SocketLayer_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/SocketLayer_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/StringTable_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/StringTable_8h.html -------------------------------------------------------------------------------- /Help/Doxygen/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/annotated.html -------------------------------------------------------------------------------- /Help/Doxygen/html/classCheckSum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/classCheckSum.html -------------------------------------------------------------------------------- /Help/Doxygen/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/classes.html -------------------------------------------------------------------------------- /Help/Doxygen/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/deprecated.html -------------------------------------------------------------------------------- /Help/Doxygen/html/dirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/dirs.html -------------------------------------------------------------------------------- /Help/Doxygen/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/doxygen.css -------------------------------------------------------------------------------- /Help/Doxygen/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/doxygen.png -------------------------------------------------------------------------------- /Help/Doxygen/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/files.html -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2blank.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2doc.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2folderopen.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2link.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2mnode.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2node.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2plastnode.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2pnode.png -------------------------------------------------------------------------------- /Help/Doxygen/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/ftv2vertline.png -------------------------------------------------------------------------------- /Help/Doxygen/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x61.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x62.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x63.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x64.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x65.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x66.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x67.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x68.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x69.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x6b.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x6c.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x6d.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x6e.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x6f.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x70.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x71.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x72.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x73.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x74.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x75.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x76.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x77.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_0x7e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_0x7e.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_enum.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_eval.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_func.html -------------------------------------------------------------------------------- /Help/Doxygen/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/functions_vars.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals_defs.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals_enum.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals_eval.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals_func.html -------------------------------------------------------------------------------- /Help/Doxygen/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/globals_type.html -------------------------------------------------------------------------------- /Help/Doxygen/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/hierarchy.html -------------------------------------------------------------------------------- /Help/Doxygen/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/index.html -------------------------------------------------------------------------------- /Help/Doxygen/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/main.html -------------------------------------------------------------------------------- /Help/Doxygen/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/modules.html -------------------------------------------------------------------------------- /Help/Doxygen/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/namespaces.html -------------------------------------------------------------------------------- /Help/Doxygen/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/pages.html -------------------------------------------------------------------------------- /Help/Doxygen/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/tab_b.gif -------------------------------------------------------------------------------- /Help/Doxygen/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/tab_l.gif -------------------------------------------------------------------------------- /Help/Doxygen/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/tab_r.gif -------------------------------------------------------------------------------- /Help/Doxygen/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/tabs.css -------------------------------------------------------------------------------- /Help/Doxygen/html/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/Doxygen/html/tree.html -------------------------------------------------------------------------------- /Help/IrrlichtRakNetDemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/IrrlichtRakNetDemo.jpg -------------------------------------------------------------------------------- /Help/PathVariableShot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/PathVariableShot.jpg -------------------------------------------------------------------------------- /Help/RPC3Video.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RPC3Video.htm -------------------------------------------------------------------------------- /Help/RakNetLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RakNetLogo.jpg -------------------------------------------------------------------------------- /Help/RakNetMajorFeatures.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RakNetMajorFeatures.htm -------------------------------------------------------------------------------- /Help/RakNetMajorFeatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RakNetMajorFeatures.html -------------------------------------------------------------------------------- /Help/RakNetUML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RakNetUML.jpg -------------------------------------------------------------------------------- /Help/RakNet_Icon_Final-copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RakNet_Icon_Final-copy.jpg -------------------------------------------------------------------------------- /Help/RaknetManual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/RaknetManual.css -------------------------------------------------------------------------------- /Help/ReplicaManager3Video.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/ReplicaManager3Video.htm -------------------------------------------------------------------------------- /Help/SQLite3LoggerPluginVideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/SQLite3LoggerPluginVideo.html -------------------------------------------------------------------------------- /Help/addchatserverfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/addchatserverfile.jpg -------------------------------------------------------------------------------- /Help/addchatserverfilesmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/addchatserverfilesmall.jpg -------------------------------------------------------------------------------- /Help/autopatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/autopatcher.html -------------------------------------------------------------------------------- /Help/bitstreams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/bitstreams.html -------------------------------------------------------------------------------- /Help/bluetooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/bluetooth.html -------------------------------------------------------------------------------- /Help/clientserver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/clientserver.jpg -------------------------------------------------------------------------------- /Help/cloudcomputing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudcomputing.html -------------------------------------------------------------------------------- /Help/cloudhosting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting.html -------------------------------------------------------------------------------- /Help/cloudhosting1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting1.jpg -------------------------------------------------------------------------------- /Help/cloudhosting2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting2.jpg -------------------------------------------------------------------------------- /Help/cloudhosting3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting3.jpg -------------------------------------------------------------------------------- /Help/cloudhosting4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting4.jpg -------------------------------------------------------------------------------- /Help/cloudhosting5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting5.jpg -------------------------------------------------------------------------------- /Help/cloudhosting6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting6.jpg -------------------------------------------------------------------------------- /Help/cloudhosting7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/cloudhosting7.jpg -------------------------------------------------------------------------------- /Help/compilersetup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/compilersetup.html -------------------------------------------------------------------------------- /Help/compilersetup_xcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/compilersetup_xcode.html -------------------------------------------------------------------------------- /Help/completeproject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/completeproject.jpg -------------------------------------------------------------------------------- /Help/congestioncontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/congestioncontrol.html -------------------------------------------------------------------------------- /Help/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/connecting.html -------------------------------------------------------------------------------- /Help/connectionFilter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Help/connectiongraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/connectiongraph.html -------------------------------------------------------------------------------- /Help/consoleapplication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/consoleapplication.jpg -------------------------------------------------------------------------------- /Help/consoleserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/consoleserver.html -------------------------------------------------------------------------------- /Help/crashreporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/crashreporter.html -------------------------------------------------------------------------------- /Help/creatingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/creatingpackets.html -------------------------------------------------------------------------------- /Help/csharpunity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/csharpunity.html -------------------------------------------------------------------------------- /Help/custommemorymanagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/custommemorymanagement.html -------------------------------------------------------------------------------- /Help/datacompression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/datacompression.html -------------------------------------------------------------------------------- /Help/datareplicationvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/datareplicationvideo.html -------------------------------------------------------------------------------- /Help/debuggingdisconnects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/debuggingdisconnects.html -------------------------------------------------------------------------------- /Help/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/dependencies.html -------------------------------------------------------------------------------- /Help/detailedimplementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/detailedimplementation.html -------------------------------------------------------------------------------- /Help/directorydeltatransfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/directorydeltatransfer.html -------------------------------------------------------------------------------- /Help/distributednetworkobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/distributednetworkobject.html -------------------------------------------------------------------------------- /Help/emailsender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/emailsender.html -------------------------------------------------------------------------------- /Help/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/faq.html -------------------------------------------------------------------------------- /Help/filelisttransfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/filelisttransfer.html -------------------------------------------------------------------------------- /Help/fullyconnectedmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/fullyconnectedmesh.html -------------------------------------------------------------------------------- /Help/fullyconnectedmesh2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/fullyconnectedmesh2.html -------------------------------------------------------------------------------- /Help/helloworldvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/helloworldvideo.html -------------------------------------------------------------------------------- /Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/index.html -------------------------------------------------------------------------------- /Help/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/introduction.html -------------------------------------------------------------------------------- /Help/iocompletionports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/iocompletionports.html -------------------------------------------------------------------------------- /Help/ipv6support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/ipv6support.html -------------------------------------------------------------------------------- /Help/irrlichtfpsdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/irrlichtfpsdemo.html -------------------------------------------------------------------------------- /Help/lightweightdatabase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/lightweightdatabase.html -------------------------------------------------------------------------------- /Help/lobby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/lobby.html -------------------------------------------------------------------------------- /Help/makedll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/makedll.jpg -------------------------------------------------------------------------------- /Help/makedllsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/makedllsmall.jpg -------------------------------------------------------------------------------- /Help/marmalade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/marmalade.html -------------------------------------------------------------------------------- /Help/masterserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/masterserver.html -------------------------------------------------------------------------------- /Help/memorysynchronizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/memorysynchronizer.html -------------------------------------------------------------------------------- /Help/messagefilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/messagefilter.html -------------------------------------------------------------------------------- /Help/messagehandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/messagehandler.html -------------------------------------------------------------------------------- /Help/multiplayergamecomponents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/multiplayergamecomponents.html -------------------------------------------------------------------------------- /Help/multithreadeddebug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/multithreadeddebug.jpg -------------------------------------------------------------------------------- /Help/multithreadeddebugsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/multithreadeddebugsmall.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel1.html -------------------------------------------------------------------------------- /Help/natpunchpanel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel1.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel1small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel1small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel2.html -------------------------------------------------------------------------------- /Help/natpunchpanel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel2.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel2small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel2small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel3.html -------------------------------------------------------------------------------- /Help/natpunchpanel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel3.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel3small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel3small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel4.html -------------------------------------------------------------------------------- /Help/natpunchpanel4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel4.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel4small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel4small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel5.html -------------------------------------------------------------------------------- /Help/natpunchpanel5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel5.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel5small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel5small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel6.html -------------------------------------------------------------------------------- /Help/natpunchpanel6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel6.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel6small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel6small.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel7.html -------------------------------------------------------------------------------- /Help/natpunchpanel7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel7.jpg -------------------------------------------------------------------------------- /Help/natpunchpanel7small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchpanel7small.jpg -------------------------------------------------------------------------------- /Help/natpunchthrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/natpunchthrough.html -------------------------------------------------------------------------------- /Help/nattraversalarchitecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/nattraversalarchitecture.html -------------------------------------------------------------------------------- /Help/nattypedetection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/nattypedetection.html -------------------------------------------------------------------------------- /Help/networkidobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/networkidobject.html -------------------------------------------------------------------------------- /Help/networkmessages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/networkmessages.html -------------------------------------------------------------------------------- /Help/networksimulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/networksimulator.html -------------------------------------------------------------------------------- /Help/newproject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/newproject.jpg -------------------------------------------------------------------------------- /Help/newprojectsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/newprojectsmall.jpg -------------------------------------------------------------------------------- /Help/ogre3dinterpdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/ogre3dinterpdemo.html -------------------------------------------------------------------------------- /Help/packetlogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/packetlogger.html -------------------------------------------------------------------------------- /Help/phpdirectoryserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/phpdirectoryserver.html -------------------------------------------------------------------------------- /Help/playerids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/playerids.html -------------------------------------------------------------------------------- /Help/plugininterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/plugininterface.html -------------------------------------------------------------------------------- /Help/preprocessordirectives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/preprocessordirectives.html -------------------------------------------------------------------------------- /Help/preprocessordirectives.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/preprocessordirectives.jpg -------------------------------------------------------------------------------- /Help/programmingtips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/programmingtips.html -------------------------------------------------------------------------------- /Help/rackspaceinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/rackspaceinterface.html -------------------------------------------------------------------------------- /Help/rakvoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/rakvoice.html -------------------------------------------------------------------------------- /Help/readyevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/readyevent.html -------------------------------------------------------------------------------- /Help/receivingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/receivingpackets.html -------------------------------------------------------------------------------- /Help/reliabilitytypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/reliabilitytypes.html -------------------------------------------------------------------------------- /Help/replicamanager3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/replicamanager3.html -------------------------------------------------------------------------------- /Help/revisionlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/revisionlog.html -------------------------------------------------------------------------------- /Help/router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/router.html -------------------------------------------------------------------------------- /Help/rpc4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/rpc4.html -------------------------------------------------------------------------------- /Help/samples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/samples.html -------------------------------------------------------------------------------- /Help/secureconnections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/secureconnections.html -------------------------------------------------------------------------------- /Help/sendingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/sendingpackets.html -------------------------------------------------------------------------------- /Help/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/spacer.gif -------------------------------------------------------------------------------- /Help/sqlite3loggerplugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/sqlite3loggerplugin.html -------------------------------------------------------------------------------- /Help/sqlite3plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/sqlite3plugin.html -------------------------------------------------------------------------------- /Help/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/startup.html -------------------------------------------------------------------------------- /Help/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/statistics.html -------------------------------------------------------------------------------- /Help/steamlobby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/steamlobby.html -------------------------------------------------------------------------------- /Help/stringcompressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/stringcompressor.html -------------------------------------------------------------------------------- /Help/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/swfobject.js -------------------------------------------------------------------------------- /Help/swigtutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/swigtutorial.html -------------------------------------------------------------------------------- /Help/swigtutorialadditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/swigtutorialadditional.html -------------------------------------------------------------------------------- /Help/systemaddresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/systemaddresses.html -------------------------------------------------------------------------------- /Help/systemoverview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/systemoverview.html -------------------------------------------------------------------------------- /Help/tcpinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tcpinterface.html -------------------------------------------------------------------------------- /Help/teambalancer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/teambalancer.html -------------------------------------------------------------------------------- /Help/telnet1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/telnet1.jpg -------------------------------------------------------------------------------- /Help/telnet2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/telnet2.jpg -------------------------------------------------------------------------------- /Help/telnet3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/telnet3.jpg -------------------------------------------------------------------------------- /Help/timestamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/timestamp.jpg -------------------------------------------------------------------------------- /Help/timestamping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/timestamping.html -------------------------------------------------------------------------------- /Help/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial.html -------------------------------------------------------------------------------- /Help/tutorial1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial1.jpg -------------------------------------------------------------------------------- /Help/tutorial2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial2.jpg -------------------------------------------------------------------------------- /Help/tutorial3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial3.jpg -------------------------------------------------------------------------------- /Help/tutorial4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial4.jpg -------------------------------------------------------------------------------- /Help/tutorial5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial5.jpg -------------------------------------------------------------------------------- /Help/tutorial6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial6.jpg -------------------------------------------------------------------------------- /Help/tutorial7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorial7.jpg -------------------------------------------------------------------------------- /Help/tutorialsample1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorialsample1.html -------------------------------------------------------------------------------- /Help/tutorialsample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorialsample2.html -------------------------------------------------------------------------------- /Help/tutorialsample3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/tutorialsample3.html -------------------------------------------------------------------------------- /Help/twowayauthentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/twowayauthentication.html -------------------------------------------------------------------------------- /Help/useiocompletionports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/useiocompletionports.jpg -------------------------------------------------------------------------------- /Help/useiocompletionportssmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/useiocompletionportssmall.jpg -------------------------------------------------------------------------------- /Help/ws2_32include.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/ws2_32include.jpg -------------------------------------------------------------------------------- /Help/ws2_32includesmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/ws2_32includesmall.jpg -------------------------------------------------------------------------------- /Help/xcode_addfiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_addfiles.jpg -------------------------------------------------------------------------------- /Help/xcode_addfiles_newgroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_addfiles_newgroup.jpg -------------------------------------------------------------------------------- /Help/xcode_changesdk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_changesdk.jpg -------------------------------------------------------------------------------- /Help/xcode_headersearchpaths.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_headersearchpaths.jpg -------------------------------------------------------------------------------- /Help/xcode_library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_library.jpg -------------------------------------------------------------------------------- /Help/xcode_libraryname.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_libraryname.jpg -------------------------------------------------------------------------------- /Help/xcode_librarysmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_librarysmall.jpg -------------------------------------------------------------------------------- /Help/xcode_linkwithlibrary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_linkwithlibrary.jpg -------------------------------------------------------------------------------- /Help/xcode_newcommandlinetool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_newcommandlinetool.jpg -------------------------------------------------------------------------------- /Help/xcode_newworkspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_newworkspace.jpg -------------------------------------------------------------------------------- /Help/xcode_remove_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_remove_cat.jpg -------------------------------------------------------------------------------- /Help/xcode_sourcefolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Help/xcode_sourcefolder.jpg -------------------------------------------------------------------------------- /Lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/DLL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/DLL/DLL.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL.APS -------------------------------------------------------------------------------- /Lib/DLL/DLL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL.rc -------------------------------------------------------------------------------- /Lib/DLL/DLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL.vcproj -------------------------------------------------------------------------------- /Lib/DLL/DLL.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL.vcproj.user -------------------------------------------------------------------------------- /Lib/DLL/DLL_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL_vc8.vcproj -------------------------------------------------------------------------------- /Lib/DLL/DLL_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/DLL_vc9.vcproj -------------------------------------------------------------------------------- /Lib/DLL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/readme.txt -------------------------------------------------------------------------------- /Lib/DLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/DLL/resource.h -------------------------------------------------------------------------------- /Lib/LibStatic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/LibStatic/LibStatic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/LibStatic.vcproj -------------------------------------------------------------------------------- /Lib/LibStatic/LibStatic.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/LibStatic.vcproj.user -------------------------------------------------------------------------------- /Lib/LibStatic/LibStatic_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/LibStatic_vc8.vcproj -------------------------------------------------------------------------------- /Lib/LibStatic/LibStatic_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/LibStatic_vc9.vcproj -------------------------------------------------------------------------------- /Lib/LibStatic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Lib/LibStatic/readme.txt -------------------------------------------------------------------------------- /RakNet_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/RakNet_VS2008.sln -------------------------------------------------------------------------------- /Samples/BigPacketTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/BigPacketTest/readme.txt -------------------------------------------------------------------------------- /Samples/BurstTest/BurstTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/BurstTest/BurstTest.cpp -------------------------------------------------------------------------------- /Samples/BurstTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/BurstTest/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/BurstTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/BurstTest/readme.txt -------------------------------------------------------------------------------- /Samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Chat Example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Chat Example/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Chat Example/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Chat Example/readme.txt -------------------------------------------------------------------------------- /Samples/CloudClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudClient/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/CloudClient/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudClient/readme.txt -------------------------------------------------------------------------------- /Samples/CloudServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudServer/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/CloudServer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudServer/readme.txt -------------------------------------------------------------------------------- /Samples/CloudTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudTest/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/CloudTest/CloudTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudTest/CloudTest.cpp -------------------------------------------------------------------------------- /Samples/CloudTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CloudTest/readme.txt -------------------------------------------------------------------------------- /Samples/CrashReporter/SendFileTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CrashReporter/SendFileTo.h -------------------------------------------------------------------------------- /Samples/CrashReporter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CrashReporter/main.cpp -------------------------------------------------------------------------------- /Samples/CrashReporter/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/CrashReporter/readme.txt -------------------------------------------------------------------------------- /Samples/Encryption/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Encryption/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Encryption/Encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Encryption/Encryption.cpp -------------------------------------------------------------------------------- /Samples/Encryption/Encryption.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Encryption/Encryption.dsp -------------------------------------------------------------------------------- /Samples/Encryption/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Encryption/readme.txt -------------------------------------------------------------------------------- /Samples/FCMHost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/FCMHost/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/FCMHost/FCM2Host.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/FCMHost/FCM2Host.vcproj -------------------------------------------------------------------------------- /Samples/FCMHost/FCM2HostTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/FCMHost/FCM2HostTest.cpp -------------------------------------------------------------------------------- /Samples/FCMHost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/FCMHost/readme.txt -------------------------------------------------------------------------------- /Samples/FileListTransfer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/FileListTransfer/main.cpp -------------------------------------------------------------------------------- /Samples/Lobby2Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Lobby2Client/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Marmalade/Marmalade.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Marmalade/Marmalade.mkb -------------------------------------------------------------------------------- /Samples/Marmalade/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Marmalade/data/app.icf -------------------------------------------------------------------------------- /Samples/MasterServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/MasterServer/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/MasterServer/MasterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/MasterServer/MasterClient.h -------------------------------------------------------------------------------- /Samples/MasterServer/MasterCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/MasterServer/MasterCommon.h -------------------------------------------------------------------------------- /Samples/MasterServer/MasterServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/MasterServer/MasterServer.h -------------------------------------------------------------------------------- /Samples/MessageFilter/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/MessageFilter/readme.txt -------------------------------------------------------------------------------- /Samples/NATCompleteClient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/NATCompleteClient/main.cpp -------------------------------------------------------------------------------- /Samples/NATCompleteServer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/NATCompleteServer/main.cpp -------------------------------------------------------------------------------- /Samples/OfflineMessagesTest/OfflineMessagesTest.txt: -------------------------------------------------------------------------------- 1 | Tests advertise system and offline pings -------------------------------------------------------------------------------- /Samples/PacketLogger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/PacketLogger/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/PacketLogger/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/PacketLogger/readme.txt -------------------------------------------------------------------------------- /Samples/Ping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Ping/Ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping.cpp -------------------------------------------------------------------------------- /Samples/Ping/Ping.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping.dsp -------------------------------------------------------------------------------- /Samples/Ping/Ping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping.txt -------------------------------------------------------------------------------- /Samples/Ping/Ping.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping.vcproj -------------------------------------------------------------------------------- /Samples/Ping/Ping.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping.vcproj.user -------------------------------------------------------------------------------- /Samples/Ping/Ping_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping_vc8.vcproj -------------------------------------------------------------------------------- /Samples/Ping/Ping_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/Ping_vc9.vcproj -------------------------------------------------------------------------------- /Samples/Ping/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Ping/readme.txt -------------------------------------------------------------------------------- /Samples/RPC3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC3/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/RPC3/RPC3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC3/RPC3.vcproj -------------------------------------------------------------------------------- /Samples/RPC3/RPC3Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC3/RPC3Sample.cpp -------------------------------------------------------------------------------- /Samples/RPC3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC3/readme.txt -------------------------------------------------------------------------------- /Samples/RPC4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC4/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/RPC4/RPC4.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC4/RPC4.vcproj -------------------------------------------------------------------------------- /Samples/RPC4/RPC4Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC4/RPC4Sample.cpp -------------------------------------------------------------------------------- /Samples/RPC4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RPC4/readme.txt -------------------------------------------------------------------------------- /Samples/RackspaceConsole/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RackspaceConsole/main.cpp -------------------------------------------------------------------------------- /Samples/RackspaceConsole/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RackspaceConsole/readme.txt -------------------------------------------------------------------------------- /Samples/RakVoice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoice/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/RakVoice/RakVoice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoice/RakVoice.txt -------------------------------------------------------------------------------- /Samples/RakVoice/RakVoice.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoice/RakVoice.vcproj -------------------------------------------------------------------------------- /Samples/RakVoice/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoice/main.cpp -------------------------------------------------------------------------------- /Samples/RakVoice/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoice/readme.txt -------------------------------------------------------------------------------- /Samples/RakVoiceDSound/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoiceDSound/main.cpp -------------------------------------------------------------------------------- /Samples/RakVoiceFMOD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoiceFMOD/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/RakVoiceFMOD/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoiceFMOD/main.cpp -------------------------------------------------------------------------------- /Samples/RakVoiceFMOD/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RakVoiceFMOD/readme.txt -------------------------------------------------------------------------------- /Samples/RankingServerDB/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/RankingServerDB/readme.txt -------------------------------------------------------------------------------- /Samples/ReadyEvent/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ReadyEvent/readme.txt -------------------------------------------------------------------------------- /Samples/ReplicaManager3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ReplicaManager3/main.cpp -------------------------------------------------------------------------------- /Samples/ReplicaManager3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ReplicaManager3/readme.txt -------------------------------------------------------------------------------- /Samples/Rooms/Rooms.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Rooms/Rooms.vcproj -------------------------------------------------------------------------------- /Samples/Rooms/RoomsSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Rooms/RoomsSample.cpp -------------------------------------------------------------------------------- /Samples/Rooms/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Rooms/readme.txt -------------------------------------------------------------------------------- /Samples/RoomsBrowserGFx3/RakNet/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/Router2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Router2/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Router2/Router2Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Router2/Router2Sample.cpp -------------------------------------------------------------------------------- /Samples/Router2/Router2_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Router2/Router2_vc8.vcproj -------------------------------------------------------------------------------- /Samples/Router2/Router2_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Router2/Router2_vc9.vcproj -------------------------------------------------------------------------------- /Samples/Router2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Router2/readme.txt -------------------------------------------------------------------------------- /Samples/SendEmail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SendEmail/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/SendEmail/SendEmail.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SendEmail/SendEmail.vcproj -------------------------------------------------------------------------------- /Samples/SendEmail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SendEmail/main.cpp -------------------------------------------------------------------------------- /Samples/SendEmail/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SendEmail/readme.txt -------------------------------------------------------------------------------- /Samples/SteamLobby/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SteamLobby/main.cpp -------------------------------------------------------------------------------- /Samples/SteamLobby/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/SteamLobby/readme.txt -------------------------------------------------------------------------------- /Samples/TeamBalancer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TeamBalancer/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/TeamBalancer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TeamBalancer/readme.txt -------------------------------------------------------------------------------- /Samples/TestDLL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/TestDLL/TestDLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/TestDLL.vcproj -------------------------------------------------------------------------------- /Samples/TestDLL/TestDLL.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/TestDLL.vcproj.user -------------------------------------------------------------------------------- /Samples/TestDLL/TestDLL_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/TestDLL_vc8.vcproj -------------------------------------------------------------------------------- /Samples/TestDLL/TestDLL_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/TestDLL_vc9.vcproj -------------------------------------------------------------------------------- /Samples/TestDLL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/main.cpp -------------------------------------------------------------------------------- /Samples/TestDLL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/TestDLL/readme.txt -------------------------------------------------------------------------------- /Samples/Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Tests/CommonFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/CommonFunctions.cpp -------------------------------------------------------------------------------- /Samples/Tests/CommonFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/CommonFunctions.h -------------------------------------------------------------------------------- /Samples/Tests/DebugTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/DebugTools.cpp -------------------------------------------------------------------------------- /Samples/Tests/DebugTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/DebugTools.h -------------------------------------------------------------------------------- /Samples/Tests/EightPeerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/EightPeerTest.cpp -------------------------------------------------------------------------------- /Samples/Tests/EightPeerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/EightPeerTest.h -------------------------------------------------------------------------------- /Samples/Tests/IncludeAllTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/IncludeAllTests.h -------------------------------------------------------------------------------- /Samples/Tests/MaximumConnectTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/MaximumConnectTest.h -------------------------------------------------------------------------------- /Samples/Tests/PacketChangerPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/PacketChangerPlugin.h -------------------------------------------------------------------------------- /Samples/Tests/PacketDropPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/PacketDropPlugin.cpp -------------------------------------------------------------------------------- /Samples/Tests/PacketDropPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/PacketDropPlugin.h -------------------------------------------------------------------------------- /Samples/Tests/PingTestsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/PingTestsTest.cpp -------------------------------------------------------------------------------- /Samples/Tests/PingTestsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/PingTestsTest.h -------------------------------------------------------------------------------- /Samples/Tests/RakTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/RakTimer.cpp -------------------------------------------------------------------------------- /Samples/Tests/RakTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/RakTimer.h -------------------------------------------------------------------------------- /Samples/Tests/TestHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/TestHelpers.cpp -------------------------------------------------------------------------------- /Samples/Tests/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/TestHelpers.h -------------------------------------------------------------------------------- /Samples/Tests/TestInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/TestInterface.cpp -------------------------------------------------------------------------------- /Samples/Tests/TestInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/TestInterface.h -------------------------------------------------------------------------------- /Samples/Tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/Tests.cpp -------------------------------------------------------------------------------- /Samples/Tests/Tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Tests/Tests.vcproj -------------------------------------------------------------------------------- /Samples/ThreadTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ThreadTest/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/ThreadTest/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ThreadTest/ThreadTest.cpp -------------------------------------------------------------------------------- /Samples/ThreadTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/ThreadTest/readme.txt -------------------------------------------------------------------------------- /Samples/Timestamping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Timestamping/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/Timestamping/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/Timestamping/readme.txt -------------------------------------------------------------------------------- /Samples/UDPForwarder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/UDPForwarder/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/UDPForwarder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/UDPForwarder/main.cpp -------------------------------------------------------------------------------- /Samples/UDPForwarder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/UDPForwarder/readme.txt -------------------------------------------------------------------------------- /Samples/iOS/ChatClient/ChatClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Samples/iOS/ChatClient/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Samples/iOS/ChatClient/readme.txt -------------------------------------------------------------------------------- /Source/AutopatcherPatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/AutopatcherPatchContext.h -------------------------------------------------------------------------------- /Source/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/BitStream.cpp -------------------------------------------------------------------------------- /Source/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/BitStream.h -------------------------------------------------------------------------------- /Source/CCRakNetSlidingWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CCRakNetSlidingWindow.cpp -------------------------------------------------------------------------------- /Source/CCRakNetSlidingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CCRakNetSlidingWindow.h -------------------------------------------------------------------------------- /Source/CCRakNetUDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CCRakNetUDT.cpp -------------------------------------------------------------------------------- /Source/CCRakNetUDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CCRakNetUDT.h -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | -------------------------------------------------------------------------------- /Source/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CheckSum.cpp -------------------------------------------------------------------------------- /Source/CheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CheckSum.h -------------------------------------------------------------------------------- /Source/CloudClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudClient.cpp -------------------------------------------------------------------------------- /Source/CloudClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudClient.h -------------------------------------------------------------------------------- /Source/CloudCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudCommon.cpp -------------------------------------------------------------------------------- /Source/CloudCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudCommon.h -------------------------------------------------------------------------------- /Source/CloudServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudServer.cpp -------------------------------------------------------------------------------- /Source/CloudServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CloudServer.h -------------------------------------------------------------------------------- /Source/CommandParserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CommandParserInterface.cpp -------------------------------------------------------------------------------- /Source/CommandParserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/CommandParserInterface.h -------------------------------------------------------------------------------- /Source/ConnectionGraph2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ConnectionGraph2.cpp -------------------------------------------------------------------------------- /Source/ConnectionGraph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ConnectionGraph2.h -------------------------------------------------------------------------------- /Source/ConsoleServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ConsoleServer.cpp -------------------------------------------------------------------------------- /Source/ConsoleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ConsoleServer.h -------------------------------------------------------------------------------- /Source/DS_BPlusTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_BPlusTree.h -------------------------------------------------------------------------------- /Source/DS_BinarySearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_BinarySearchTree.h -------------------------------------------------------------------------------- /Source/DS_BytePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_BytePool.cpp -------------------------------------------------------------------------------- /Source/DS_BytePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_BytePool.h -------------------------------------------------------------------------------- /Source/DS_ByteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_ByteQueue.cpp -------------------------------------------------------------------------------- /Source/DS_ByteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_ByteQueue.h -------------------------------------------------------------------------------- /Source/DS_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Hash.h -------------------------------------------------------------------------------- /Source/DS_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Heap.h -------------------------------------------------------------------------------- /Source/DS_HuffmanEncodingTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_HuffmanEncodingTree.cpp -------------------------------------------------------------------------------- /Source/DS_HuffmanEncodingTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_HuffmanEncodingTree.h -------------------------------------------------------------------------------- /Source/DS_HuffmanEncodingTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_HuffmanEncodingTreeNode.h -------------------------------------------------------------------------------- /Source/DS_LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_LinkedList.h -------------------------------------------------------------------------------- /Source/DS_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_List.h -------------------------------------------------------------------------------- /Source/DS_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Map.h -------------------------------------------------------------------------------- /Source/DS_MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_MemoryPool.h -------------------------------------------------------------------------------- /Source/DS_Multilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Multilist.h -------------------------------------------------------------------------------- /Source/DS_OrderedChannelHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_OrderedChannelHeap.h -------------------------------------------------------------------------------- /Source/DS_OrderedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_OrderedList.h -------------------------------------------------------------------------------- /Source/DS_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Queue.h -------------------------------------------------------------------------------- /Source/DS_QueueLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_QueueLinkedList.h -------------------------------------------------------------------------------- /Source/DS_RangeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_RangeList.h -------------------------------------------------------------------------------- /Source/DS_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Table.cpp -------------------------------------------------------------------------------- /Source/DS_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Table.h -------------------------------------------------------------------------------- /Source/DS_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_Tree.h -------------------------------------------------------------------------------- /Source/DS_WeightedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DS_WeightedGraph.h -------------------------------------------------------------------------------- /Source/DataCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DataCompressor.cpp -------------------------------------------------------------------------------- /Source/DataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DataCompressor.h -------------------------------------------------------------------------------- /Source/DirectoryDeltaTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DirectoryDeltaTransfer.cpp -------------------------------------------------------------------------------- /Source/DirectoryDeltaTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DirectoryDeltaTransfer.h -------------------------------------------------------------------------------- /Source/DynDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DynDNS.cpp -------------------------------------------------------------------------------- /Source/DynDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/DynDNS.h -------------------------------------------------------------------------------- /Source/EmailSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/EmailSender.cpp -------------------------------------------------------------------------------- /Source/EmailSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/EmailSender.h -------------------------------------------------------------------------------- /Source/EncodeClassName.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Source/EpochTimeToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/EpochTimeToString.cpp -------------------------------------------------------------------------------- /Source/EpochTimeToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/EpochTimeToString.h -------------------------------------------------------------------------------- /Source/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Export.h -------------------------------------------------------------------------------- /Source/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileList.cpp -------------------------------------------------------------------------------- /Source/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileList.h -------------------------------------------------------------------------------- /Source/FileListNodeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileListNodeContext.h -------------------------------------------------------------------------------- /Source/FileListTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileListTransfer.cpp -------------------------------------------------------------------------------- /Source/FileListTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileListTransfer.h -------------------------------------------------------------------------------- /Source/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileOperations.cpp -------------------------------------------------------------------------------- /Source/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FileOperations.h -------------------------------------------------------------------------------- /Source/FormatString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FormatString.cpp -------------------------------------------------------------------------------- /Source/FormatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FormatString.h -------------------------------------------------------------------------------- /Source/FullyConnectedMesh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FullyConnectedMesh2.cpp -------------------------------------------------------------------------------- /Source/FullyConnectedMesh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/FullyConnectedMesh2.h -------------------------------------------------------------------------------- /Source/GetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/GetTime.cpp -------------------------------------------------------------------------------- /Source/GetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/GetTime.h -------------------------------------------------------------------------------- /Source/Getche.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Getche.cpp -------------------------------------------------------------------------------- /Source/Getche.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Getche.h -------------------------------------------------------------------------------- /Source/Gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Gets.cpp -------------------------------------------------------------------------------- /Source/Gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Gets.h -------------------------------------------------------------------------------- /Source/GridSectorizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/GridSectorizer.cpp -------------------------------------------------------------------------------- /Source/GridSectorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/GridSectorizer.h -------------------------------------------------------------------------------- /Source/HTTPConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/HTTPConnection.cpp -------------------------------------------------------------------------------- /Source/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/HTTPConnection.h -------------------------------------------------------------------------------- /Source/IncrementalReadInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/IncrementalReadInterface.cpp -------------------------------------------------------------------------------- /Source/IncrementalReadInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/IncrementalReadInterface.h -------------------------------------------------------------------------------- /Source/InternalPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/InternalPacket.h -------------------------------------------------------------------------------- /Source/Itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Itoa.cpp -------------------------------------------------------------------------------- /Source/Itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Itoa.h -------------------------------------------------------------------------------- /Source/Kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Kbhit.h -------------------------------------------------------------------------------- /Source/LinuxStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LinuxStrings.cpp -------------------------------------------------------------------------------- /Source/LinuxStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LinuxStrings.h -------------------------------------------------------------------------------- /Source/LocklessTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LocklessTypes.cpp -------------------------------------------------------------------------------- /Source/LocklessTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LocklessTypes.h -------------------------------------------------------------------------------- /Source/LogCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LogCommandParser.cpp -------------------------------------------------------------------------------- /Source/LogCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/LogCommandParser.h -------------------------------------------------------------------------------- /Source/MTUSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/MTUSize.h -------------------------------------------------------------------------------- /Source/MessageFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/MessageFilter.cpp -------------------------------------------------------------------------------- /Source/MessageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/MessageFilter.h -------------------------------------------------------------------------------- /Source/MessageIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/MessageIdentifiers.h -------------------------------------------------------------------------------- /Source/NatPunchthroughClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatPunchthroughClient.cpp -------------------------------------------------------------------------------- /Source/NatPunchthroughClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatPunchthroughClient.h -------------------------------------------------------------------------------- /Source/NatPunchthroughServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatPunchthroughServer.cpp -------------------------------------------------------------------------------- /Source/NatPunchthroughServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatPunchthroughServer.h -------------------------------------------------------------------------------- /Source/NatTypeDetectionClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionClient.cpp -------------------------------------------------------------------------------- /Source/NatTypeDetectionClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionClient.h -------------------------------------------------------------------------------- /Source/NatTypeDetectionCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionCommon.cpp -------------------------------------------------------------------------------- /Source/NatTypeDetectionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionCommon.h -------------------------------------------------------------------------------- /Source/NatTypeDetectionServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionServer.cpp -------------------------------------------------------------------------------- /Source/NatTypeDetectionServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NatTypeDetectionServer.h -------------------------------------------------------------------------------- /Source/NativeFeatureIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NativeFeatureIncludes.h -------------------------------------------------------------------------------- /Source/NativeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NativeTypes.h -------------------------------------------------------------------------------- /Source/NetworkIDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NetworkIDManager.cpp -------------------------------------------------------------------------------- /Source/NetworkIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NetworkIDManager.h -------------------------------------------------------------------------------- /Source/NetworkIDObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NetworkIDObject.cpp -------------------------------------------------------------------------------- /Source/NetworkIDObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/NetworkIDObject.h -------------------------------------------------------------------------------- /Source/PS3Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PS3Includes.h -------------------------------------------------------------------------------- /Source/PacketConsoleLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketConsoleLogger.cpp -------------------------------------------------------------------------------- /Source/PacketConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketConsoleLogger.h -------------------------------------------------------------------------------- /Source/PacketFileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketFileLogger.cpp -------------------------------------------------------------------------------- /Source/PacketFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketFileLogger.h -------------------------------------------------------------------------------- /Source/PacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketLogger.cpp -------------------------------------------------------------------------------- /Source/PacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketLogger.h -------------------------------------------------------------------------------- /Source/PacketOutputWindowLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketOutputWindowLogger.cpp -------------------------------------------------------------------------------- /Source/PacketOutputWindowLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketOutputWindowLogger.h -------------------------------------------------------------------------------- /Source/PacketPool.h: -------------------------------------------------------------------------------- 1 | // REMOVEME -------------------------------------------------------------------------------- /Source/PacketPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketPriority.h -------------------------------------------------------------------------------- /Source/PacketizedTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketizedTCP.cpp -------------------------------------------------------------------------------- /Source/PacketizedTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PacketizedTCP.h -------------------------------------------------------------------------------- /Source/PluginInterface2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PluginInterface2.cpp -------------------------------------------------------------------------------- /Source/PluginInterface2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/PluginInterface2.h -------------------------------------------------------------------------------- /Source/RPC4Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RPC4Plugin.cpp -------------------------------------------------------------------------------- /Source/RPC4Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RPC4Plugin.h -------------------------------------------------------------------------------- /Source/Rackspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Rackspace.cpp -------------------------------------------------------------------------------- /Source/Rackspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Rackspace.h -------------------------------------------------------------------------------- /Source/RakAlloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakAlloca.h -------------------------------------------------------------------------------- /Source/RakAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakAssert.h -------------------------------------------------------------------------------- /Source/RakMemoryOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakMemoryOverride.cpp -------------------------------------------------------------------------------- /Source/RakMemoryOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakMemoryOverride.h -------------------------------------------------------------------------------- /Source/RakNet.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNet.vcproj -------------------------------------------------------------------------------- /Source/RakNetCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetCommandParser.cpp -------------------------------------------------------------------------------- /Source/RakNetCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetCommandParser.h -------------------------------------------------------------------------------- /Source/RakNetDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetDefines.h -------------------------------------------------------------------------------- /Source/RakNetDefinesOverrides.h: -------------------------------------------------------------------------------- 1 | // USER EDITABLE FILE 2 | 3 | -------------------------------------------------------------------------------- /Source/RakNetSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetSmartPtr.h -------------------------------------------------------------------------------- /Source/RakNetSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetSocket.cpp -------------------------------------------------------------------------------- /Source/RakNetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetSocket.h -------------------------------------------------------------------------------- /Source/RakNetStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetStatistics.cpp -------------------------------------------------------------------------------- /Source/RakNetStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetStatistics.h -------------------------------------------------------------------------------- /Source/RakNetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetTime.h -------------------------------------------------------------------------------- /Source/RakNetTransport2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetTransport2.cpp -------------------------------------------------------------------------------- /Source/RakNetTransport2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetTransport2.h -------------------------------------------------------------------------------- /Source/RakNetTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetTypes.cpp -------------------------------------------------------------------------------- /Source/RakNetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetTypes.h -------------------------------------------------------------------------------- /Source/RakNetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNetVersion.h -------------------------------------------------------------------------------- /Source/RakNet_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNet_vc8.vcproj -------------------------------------------------------------------------------- /Source/RakNet_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakNet_vc9.vcproj -------------------------------------------------------------------------------- /Source/RakPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakPeer.cpp -------------------------------------------------------------------------------- /Source/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakPeer.h -------------------------------------------------------------------------------- /Source/RakPeerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakPeerInterface.h -------------------------------------------------------------------------------- /Source/RakSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakSleep.cpp -------------------------------------------------------------------------------- /Source/RakSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakSleep.h -------------------------------------------------------------------------------- /Source/RakString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakString.cpp -------------------------------------------------------------------------------- /Source/RakString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakString.h -------------------------------------------------------------------------------- /Source/RakThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakThread.cpp -------------------------------------------------------------------------------- /Source/RakThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakThread.h -------------------------------------------------------------------------------- /Source/RakWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakWString.cpp -------------------------------------------------------------------------------- /Source/RakWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RakWString.h -------------------------------------------------------------------------------- /Source/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Rand.cpp -------------------------------------------------------------------------------- /Source/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Rand.h -------------------------------------------------------------------------------- /Source/ReadyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReadyEvent.cpp -------------------------------------------------------------------------------- /Source/ReadyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReadyEvent.h -------------------------------------------------------------------------------- /Source/RefCountedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/RefCountedObj.h -------------------------------------------------------------------------------- /Source/ReliabilityLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReliabilityLayer.cpp -------------------------------------------------------------------------------- /Source/ReliabilityLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReliabilityLayer.h -------------------------------------------------------------------------------- /Source/ReplicaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReplicaEnums.h -------------------------------------------------------------------------------- /Source/ReplicaManager3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReplicaManager3.cpp -------------------------------------------------------------------------------- /Source/ReplicaManager3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ReplicaManager3.h -------------------------------------------------------------------------------- /Source/Router2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Router2.cpp -------------------------------------------------------------------------------- /Source/Router2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/Router2.h -------------------------------------------------------------------------------- /Source/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SHA1.cpp -------------------------------------------------------------------------------- /Source/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SHA1.h -------------------------------------------------------------------------------- /Source/SecureHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SecureHandshake.cpp -------------------------------------------------------------------------------- /Source/SecureHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SecureHandshake.h -------------------------------------------------------------------------------- /Source/SendToThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SendToThread.cpp -------------------------------------------------------------------------------- /Source/SendToThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SendToThread.h -------------------------------------------------------------------------------- /Source/SignaledEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SignaledEvent.cpp -------------------------------------------------------------------------------- /Source/SignaledEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SignaledEvent.h -------------------------------------------------------------------------------- /Source/SimpleMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SimpleMutex.cpp -------------------------------------------------------------------------------- /Source/SimpleMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SimpleMutex.h -------------------------------------------------------------------------------- /Source/SimpleTCPServer.h: -------------------------------------------------------------------------------- 1 | // Eraseme -------------------------------------------------------------------------------- /Source/SingleProducerConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SingleProducerConsumer.h -------------------------------------------------------------------------------- /Source/SocketDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SocketDefines.h -------------------------------------------------------------------------------- /Source/SocketIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SocketIncludes.h -------------------------------------------------------------------------------- /Source/SocketLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SocketLayer.cpp -------------------------------------------------------------------------------- /Source/SocketLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SocketLayer.h -------------------------------------------------------------------------------- /Source/StringCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/StringCompressor.cpp -------------------------------------------------------------------------------- /Source/StringCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/StringCompressor.h -------------------------------------------------------------------------------- /Source/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/StringTable.cpp -------------------------------------------------------------------------------- /Source/StringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/StringTable.h -------------------------------------------------------------------------------- /Source/SuperFastHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SuperFastHash.cpp -------------------------------------------------------------------------------- /Source/SuperFastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/SuperFastHash.h -------------------------------------------------------------------------------- /Source/TCPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TCPInterface.cpp -------------------------------------------------------------------------------- /Source/TCPInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TCPInterface.h -------------------------------------------------------------------------------- /Source/TableSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TableSerializer.cpp -------------------------------------------------------------------------------- /Source/TableSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TableSerializer.h -------------------------------------------------------------------------------- /Source/TeamBalancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TeamBalancer.cpp -------------------------------------------------------------------------------- /Source/TeamBalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TeamBalancer.h -------------------------------------------------------------------------------- /Source/TelnetTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TelnetTransport.cpp -------------------------------------------------------------------------------- /Source/TelnetTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TelnetTransport.h -------------------------------------------------------------------------------- /Source/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ThreadPool.h -------------------------------------------------------------------------------- /Source/ThreadsafePacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ThreadsafePacketLogger.cpp -------------------------------------------------------------------------------- /Source/ThreadsafePacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/ThreadsafePacketLogger.h -------------------------------------------------------------------------------- /Source/TransportInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TransportInterface.h -------------------------------------------------------------------------------- /Source/TwoWayAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TwoWayAuthentication.cpp -------------------------------------------------------------------------------- /Source/TwoWayAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/TwoWayAuthentication.h -------------------------------------------------------------------------------- /Source/UDPForwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPForwarder.cpp -------------------------------------------------------------------------------- /Source/UDPForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPForwarder.h -------------------------------------------------------------------------------- /Source/UDPProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyClient.cpp -------------------------------------------------------------------------------- /Source/UDPProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyClient.h -------------------------------------------------------------------------------- /Source/UDPProxyCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyCommon.h -------------------------------------------------------------------------------- /Source/UDPProxyCoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyCoordinator.cpp -------------------------------------------------------------------------------- /Source/UDPProxyCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyCoordinator.h -------------------------------------------------------------------------------- /Source/UDPProxyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyServer.cpp -------------------------------------------------------------------------------- /Source/UDPProxyServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/UDPProxyServer.h -------------------------------------------------------------------------------- /Source/VariableDeltaSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariableDeltaSerializer.cpp -------------------------------------------------------------------------------- /Source/VariableDeltaSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariableDeltaSerializer.h -------------------------------------------------------------------------------- /Source/VariableListDeltaTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariableListDeltaTracker.cpp -------------------------------------------------------------------------------- /Source/VariableListDeltaTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariableListDeltaTracker.h -------------------------------------------------------------------------------- /Source/VariadicSQLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariadicSQLParser.cpp -------------------------------------------------------------------------------- /Source/VariadicSQLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VariadicSQLParser.h -------------------------------------------------------------------------------- /Source/VitaIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VitaIncludes.cpp -------------------------------------------------------------------------------- /Source/VitaIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/VitaIncludes.h -------------------------------------------------------------------------------- /Source/WSAStartupSingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/WSAStartupSingleton.cpp -------------------------------------------------------------------------------- /Source/WSAStartupSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/WSAStartupSingleton.h -------------------------------------------------------------------------------- /Source/WindowsIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/WindowsIncludes.h -------------------------------------------------------------------------------- /Source/XBox360Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/XBox360Includes.h -------------------------------------------------------------------------------- /Source/_FindFirst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/_FindFirst.cpp -------------------------------------------------------------------------------- /Source/_FindFirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/_FindFirst.h -------------------------------------------------------------------------------- /Source/cat/AllCodec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllCodec.hpp -------------------------------------------------------------------------------- /Source/cat/AllCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllCommon.hpp -------------------------------------------------------------------------------- /Source/cat/AllCrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllCrypt.hpp -------------------------------------------------------------------------------- /Source/cat/AllFramework.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllFramework.hpp -------------------------------------------------------------------------------- /Source/cat/AllGraphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllGraphics.hpp -------------------------------------------------------------------------------- /Source/cat/AllMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllMath.hpp -------------------------------------------------------------------------------- /Source/cat/AllTunnel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/AllTunnel.hpp -------------------------------------------------------------------------------- /Source/cat/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/Config.hpp -------------------------------------------------------------------------------- /Source/cat/LIBCAT.README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/LIBCAT.README.txt -------------------------------------------------------------------------------- /Source/cat/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/Platform.hpp -------------------------------------------------------------------------------- /Source/cat/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/Singleton.hpp -------------------------------------------------------------------------------- /Source/cat/asm/big_x64_asm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/asm/big_x64_asm.hpp -------------------------------------------------------------------------------- /Source/cat/codec/ChatText.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/codec/ChatText.stats -------------------------------------------------------------------------------- /Source/cat/codec/RangeCoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/codec/RangeCoder.hpp -------------------------------------------------------------------------------- /Source/cat/crypt/SecureCompare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/crypt/SecureCompare.hpp -------------------------------------------------------------------------------- /Source/cat/crypt/hash/HMAC_MD5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/crypt/hash/HMAC_MD5.hpp -------------------------------------------------------------------------------- /Source/cat/crypt/hash/Skein.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/crypt/hash/Skein.hpp -------------------------------------------------------------------------------- /Source/cat/crypt/pass/Passwords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/crypt/pass/Passwords.hpp -------------------------------------------------------------------------------- /Source/cat/crypt/rand/Fortuna.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/crypt/rand/Fortuna.hpp -------------------------------------------------------------------------------- /Source/cat/db/BombayTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/db/BombayTable.hpp -------------------------------------------------------------------------------- /Source/cat/db/BombayTableIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/db/BombayTableIndex.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/LoadBitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/LoadBitmap.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/LoadPNG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/LoadPNG.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/Matrix.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/Quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/Quaternion.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/Scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/Scalar.hpp -------------------------------------------------------------------------------- /Source/cat/gfx/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/gfx/Vector.hpp -------------------------------------------------------------------------------- /Source/cat/hash/MurmurHash2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/hash/MurmurHash2.hpp -------------------------------------------------------------------------------- /Source/cat/io/AsyncBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/AsyncBuffer.hpp -------------------------------------------------------------------------------- /Source/cat/io/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/Base64.hpp -------------------------------------------------------------------------------- /Source/cat/io/Logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/Logging.hpp -------------------------------------------------------------------------------- /Source/cat/io/MMapFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/MMapFile.hpp -------------------------------------------------------------------------------- /Source/cat/io/PackageManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/PackageManager.hpp -------------------------------------------------------------------------------- /Source/cat/io/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/Settings.hpp -------------------------------------------------------------------------------- /Source/cat/io/ThreadPoolFiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/io/ThreadPoolFiles.hpp -------------------------------------------------------------------------------- /Source/cat/lang/Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/lang/Strings.hpp -------------------------------------------------------------------------------- /Source/cat/lib/cat/big_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/lib/cat/big_x64.lib -------------------------------------------------------------------------------- /Source/cat/lib/cat/big_x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/lib/cat/big_x64.o -------------------------------------------------------------------------------- /Source/cat/lib/cat/big_x64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/lib/cat/big_x64.obj -------------------------------------------------------------------------------- /Source/cat/math/BigMontgomery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/math/BigMontgomery.hpp -------------------------------------------------------------------------------- /Source/cat/math/BigRTL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/math/BigRTL.hpp -------------------------------------------------------------------------------- /Source/cat/math/BitMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/math/BitMath.hpp -------------------------------------------------------------------------------- /Source/cat/math/Legs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/math/Legs.hpp -------------------------------------------------------------------------------- /Source/cat/net/DNSClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/DNSClient.hpp -------------------------------------------------------------------------------- /Source/cat/net/Sockets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/Sockets.hpp -------------------------------------------------------------------------------- /Source/cat/net/SphynxClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/SphynxClient.hpp -------------------------------------------------------------------------------- /Source/cat/net/SphynxCollexion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/SphynxCollexion.hpp -------------------------------------------------------------------------------- /Source/cat/net/SphynxServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/SphynxServer.hpp -------------------------------------------------------------------------------- /Source/cat/net/SphynxTransport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/SphynxTransport.hpp -------------------------------------------------------------------------------- /Source/cat/net/bsd/TCPClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/bsd/TCPClient.hpp -------------------------------------------------------------------------------- /Source/cat/net/bsd/TCPServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/bsd/TCPServer.hpp -------------------------------------------------------------------------------- /Source/cat/net/bsd/UDPEndpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/bsd/UDPEndpoint.hpp -------------------------------------------------------------------------------- /Source/cat/net/linux/TCPClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/linux/TCPClient.hpp -------------------------------------------------------------------------------- /Source/cat/net/linux/TCPServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/linux/TCPServer.hpp -------------------------------------------------------------------------------- /Source/cat/net/win/TCPClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/win/TCPClient.hpp -------------------------------------------------------------------------------- /Source/cat/net/win/TCPConnexion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/win/TCPConnexion.hpp -------------------------------------------------------------------------------- /Source/cat/net/win/TCPServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/win/TCPServer.hpp -------------------------------------------------------------------------------- /Source/cat/net/win/UDPEndpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/net/win/UDPEndpoint.hpp -------------------------------------------------------------------------------- /Source/cat/parse/BitStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/parse/BitStream.hpp -------------------------------------------------------------------------------- /Source/cat/parse/BufferStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/parse/BufferStream.hpp -------------------------------------------------------------------------------- /Source/cat/parse/BufferTok.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/parse/BufferTok.hpp -------------------------------------------------------------------------------- /Source/cat/parse/FastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/parse/FastDelegate.h -------------------------------------------------------------------------------- /Source/cat/parse/MessageRouter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/parse/MessageRouter.hpp -------------------------------------------------------------------------------- /Source/cat/port/AlignedAlloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/port/AlignedAlloc.hpp -------------------------------------------------------------------------------- /Source/cat/port/EndianNeutral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/port/EndianNeutral.hpp -------------------------------------------------------------------------------- /Source/cat/port/FastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/port/FastDelegate.h -------------------------------------------------------------------------------- /Source/cat/port/WindowsInclude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/port/WindowsInclude.hpp -------------------------------------------------------------------------------- /Source/cat/rand/IRandom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/rand/IRandom.hpp -------------------------------------------------------------------------------- /Source/cat/rand/MersenneTwister.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/rand/MersenneTwister.hpp -------------------------------------------------------------------------------- /Source/cat/rand/StdRand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/rand/StdRand.hpp -------------------------------------------------------------------------------- /Source/cat/src/Framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/Framework.cpp -------------------------------------------------------------------------------- /Source/cat/src/codec/RangeCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/codec/RangeCoder.cpp -------------------------------------------------------------------------------- /Source/cat/src/crypt/hash/Skein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/crypt/hash/Skein.cpp -------------------------------------------------------------------------------- /Source/cat/src/db/BombayTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/db/BombayTable.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/LoadBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/LoadBitmap.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/LoadPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/LoadPNG.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/Matrix.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/Quaternion.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/Scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/Scalar.cpp -------------------------------------------------------------------------------- /Source/cat/src/gfx/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/gfx/Vector.cpp -------------------------------------------------------------------------------- /Source/cat/src/hash/MurmurHash2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/hash/MurmurHash2.cpp -------------------------------------------------------------------------------- /Source/cat/src/io/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/io/Base64.cpp -------------------------------------------------------------------------------- /Source/cat/src/io/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/io/Logging.cpp -------------------------------------------------------------------------------- /Source/cat/src/io/MMapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/io/MMapFile.cpp -------------------------------------------------------------------------------- /Source/cat/src/io/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/io/Settings.cpp -------------------------------------------------------------------------------- /Source/cat/src/lang/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/lang/Strings.cpp -------------------------------------------------------------------------------- /Source/cat/src/math/BigRTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/math/BigRTL.cpp -------------------------------------------------------------------------------- /Source/cat/src/math/big_x64_elf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/math/big_x64_elf.asm -------------------------------------------------------------------------------- /Source/cat/src/math/rtl/io/Load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/math/rtl/io/Load.cpp -------------------------------------------------------------------------------- /Source/cat/src/math/rtl/io/Save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/math/rtl/io/Save.cpp -------------------------------------------------------------------------------- /Source/cat/src/net/DNSClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/net/DNSClient.cpp -------------------------------------------------------------------------------- /Source/cat/src/net/Sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/net/Sockets.cpp -------------------------------------------------------------------------------- /Source/cat/src/net/SphynxClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/net/SphynxClient.cpp -------------------------------------------------------------------------------- /Source/cat/src/net/SphynxServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/net/SphynxServer.cpp -------------------------------------------------------------------------------- /Source/cat/src/parse/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/parse/BitStream.cpp -------------------------------------------------------------------------------- /Source/cat/src/parse/BufferTok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/parse/BufferTok.cpp -------------------------------------------------------------------------------- /Source/cat/src/rand/StdRand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/rand/StdRand.cpp -------------------------------------------------------------------------------- /Source/cat/src/threads/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/threads/Mutex.cpp -------------------------------------------------------------------------------- /Source/cat/src/threads/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/threads/RWLock.cpp -------------------------------------------------------------------------------- /Source/cat/src/threads/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/threads/Thread.cpp -------------------------------------------------------------------------------- /Source/cat/src/time/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/src/time/Clock.cpp -------------------------------------------------------------------------------- /Source/cat/threads/Atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/Atomic.hpp -------------------------------------------------------------------------------- /Source/cat/threads/LocklessFIFO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/LocklessFIFO.hpp -------------------------------------------------------------------------------- /Source/cat/threads/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/Mutex.hpp -------------------------------------------------------------------------------- /Source/cat/threads/RWLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/RWLock.hpp -------------------------------------------------------------------------------- /Source/cat/threads/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/Thread.hpp -------------------------------------------------------------------------------- /Source/cat/threads/ThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/ThreadPool.hpp -------------------------------------------------------------------------------- /Source/cat/threads/WaitableFlag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/threads/WaitableFlag.hpp -------------------------------------------------------------------------------- /Source/cat/time/Clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/cat/time/Clock.hpp -------------------------------------------------------------------------------- /Source/gettimeofday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/gettimeofday.cpp -------------------------------------------------------------------------------- /Source/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/gettimeofday.h -------------------------------------------------------------------------------- /Source/rdlmalloc-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/rdlmalloc-options.h -------------------------------------------------------------------------------- /Source/rdlmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/rdlmalloc.cpp -------------------------------------------------------------------------------- /Source/rdlmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/Source/rdlmalloc.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyuan/RakNet/HEAD/readme.txt --------------------------------------------------------------------------------