├── .gitignore ├── Backup └── Backup.7z ├── README.md ├── Server ├── GameServerData.sql ├── GameServerTable.sql ├── Lib │ ├── Debug │ │ ├── libmysql.lib │ │ ├── libzmq.lib │ │ └── mysqlpp_d.lib │ └── Release │ │ ├── libmysql.lib │ │ ├── libzmq.lib │ │ └── mysqlpp.lib ├── Ozcollide │ ├── Ozcollide.vcxproj │ ├── aabbtree.cpp │ ├── aabbtree_aabb.cpp │ ├── aabbtree_poly.cpp │ ├── aabbtree_sphere.cpp │ ├── aabbtreeaabb_builder.cpp │ ├── aabbtreeaabb_io.cpp │ ├── aabbtreepoly_builder.cpp │ ├── aabbtreepoly_io.cpp │ ├── aabbtreesphere_builder.cpp │ ├── aabbtreesphere_io.cpp │ ├── box.cpp │ ├── dataio.cpp │ ├── dist_pointbox.cpp │ ├── dist_pointline.cpp │ ├── ellipsoid.cpp │ ├── frustum.cpp │ ├── intr_boxbox.cpp │ ├── intr_frustumsphere.cpp │ ├── intr_linebox.cpp │ ├── intr_lineline.cpp │ ├── intr_segmenttri.cpp │ ├── intr_spherebox.cpp │ ├── intr_sphereline.cpp │ ├── intr_spheretri.cpp │ ├── intr_tribox.cpp │ ├── intr_tripoint.cpp │ ├── matrix.cpp │ ├── obb.cpp │ ├── ozcollide.cpp │ ├── ozcollide │ │ ├── aabbtree.h │ │ ├── aabbtree_aabb.h │ │ ├── aabbtree_poly.h │ │ ├── aabbtree_sphere.h │ │ ├── aabbtreeaabb_builder.h │ │ ├── aabbtreepoly_builder.h │ │ ├── aabbtreesphere_builder.h │ │ ├── box.h │ │ ├── dataio.h │ │ ├── dist_pointbox.h │ │ ├── dist_pointline.h │ │ ├── ellipsoid.h │ │ ├── frustum.h │ │ ├── intr_boxbox.h │ │ ├── intr_frustumsphere.h │ │ ├── intr_linebox.h │ │ ├── intr_lineline.h │ │ ├── intr_segmenttri.h │ │ ├── intr_spherebox.h │ │ ├── intr_sphereline.h │ │ ├── intr_spheretri.h │ │ ├── intr_tribox.h │ │ ├── intr_tripoint.h │ │ ├── matrix.h │ │ ├── monitor.h │ │ ├── obb.h │ │ ├── ozcollide.h │ │ ├── plane.h │ │ ├── polygon.h │ │ ├── sphere.h │ │ ├── vec2f.h │ │ ├── vec3f.h │ │ └── vector.h │ ├── plane.cpp │ ├── polygon.cpp │ ├── sphere.cpp │ ├── vec2f.cpp │ ├── vec3f.cpp │ └── vector.cpp ├── RakNet │ ├── AutopatcherPatchContext.h │ ├── AutopatcherRepositoryInterface.h │ ├── Base64Encoder.cpp │ ├── Base64Encoder.h │ ├── BitStream.cpp │ ├── BitStream.h │ ├── CCRakNetSlidingWindow.cpp │ ├── CCRakNetSlidingWindow.h │ ├── CCRakNetUDT.cpp │ ├── CCRakNetUDT.h │ ├── 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 │ ├── DR_SHA1.cpp │ ├── DR_SHA1.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 │ ├── EmptyHeader.h │ ├── 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 │ ├── HTTPConnection2.cpp │ ├── HTTPConnection2.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 │ ├── PS4Includes.cpp │ ├── PS4Includes.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 │ ├── RakNet.vcxproj │ ├── RakNetCommandParser.cpp │ ├── RakNetCommandParser.h │ ├── RakNetDefines.h │ ├── RakNetDefinesOverrides.h │ ├── RakNetSmartPtr.h │ ├── RakNetSocket.cpp │ ├── RakNetSocket.h │ ├── RakNetSocket2.cpp │ ├── RakNetSocket2.h │ ├── RakNetSocket2_360_720.cpp │ ├── RakNetSocket2_Berkley.cpp │ ├── RakNetSocket2_Berkley_NativeClient.cpp │ ├── RakNetSocket2_NativeClient.cpp │ ├── RakNetSocket2_PS3_PS4.cpp │ ├── RakNetSocket2_PS4.cpp │ ├── RakNetSocket2_Vita.cpp │ ├── RakNetSocket2_WindowsStore8.cpp │ ├── RakNetSocket2_Windows_Linux.cpp │ ├── RakNetSocket2_Windows_Linux_360.cpp │ ├── 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 │ ├── RandSync.cpp │ ├── RandSync.h │ ├── ReadyEvent.cpp │ ├── ReadyEvent.h │ ├── RefCountedObj.h │ ├── RelayPlugin.cpp │ ├── RelayPlugin.h │ ├── ReliabilityLayer.cpp │ ├── ReliabilityLayer.h │ ├── ReplicaEnums.h │ ├── ReplicaManager3.cpp │ ├── ReplicaManager3.h │ ├── Router2.cpp │ ├── Router2.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 │ ├── StatisticsHistory.cpp │ ├── StatisticsHistory.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 │ ├── TeamManager.cpp │ ├── TeamManager.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 │ ├── gettimeofday.cpp │ └── gettimeofday.h ├── Server.sln ├── Server │ ├── AccountSocketKernel.cpp │ ├── AccountSocketKernel.h │ ├── BasicDataSet.cpp │ ├── BasicDataSet.h │ ├── BasicTypeDef.h │ ├── Client.cpp │ ├── Client.h │ ├── ConfigData.h │ ├── DatabaseKernel.cpp │ ├── DatabaseKernel.h │ ├── DbData.cpp │ ├── DbJob.cpp │ ├── DbJob.h │ ├── DbTableDef.h │ ├── GameConfig.cpp │ ├── GameConfig.h │ ├── GameKernel.cpp │ ├── GameKernel.h │ ├── GameServer.cpp │ ├── GameServer.h │ ├── GameServerDef.h │ ├── Kernel.cpp │ ├── Kernel.h │ ├── KernelDef.h │ ├── LoginKernel.cpp │ ├── LoginKernel.h │ ├── Magic.cpp │ ├── Magic.h │ ├── MagicData.h │ ├── MagicDef.h │ ├── MagicSet.cpp │ ├── MagicSet.h │ ├── MagicTargetCollector.cpp │ ├── MagicTargetCollector.h │ ├── MagicTypeData.h │ ├── Main.cpp │ ├── MemRecordset.cpp │ ├── MemRecordset.h │ ├── MoveAction.cpp │ ├── MoveAction.h │ ├── MoveList.cpp │ ├── MoveList.h │ ├── MsgCommonHandler.cpp │ ├── MsgCommonHandler.h │ ├── MsgConnectHandler.cpp │ ├── MsgConnectHandler.h │ ├── MsgErrorHandler.cpp │ ├── MsgErrorHandler.h │ ├── MsgHandler.cpp │ ├── MsgHandler.h │ ├── MsgInprocHandler.cpp │ ├── MsgInprocHandler.h │ ├── MsgLoginStepHandler.cpp │ ├── MsgLoginStepHandler.h │ ├── MsgMoveHandler.cpp │ ├── MsgMoveHandler.h │ ├── MsgRoleSelectHandler.cpp │ ├── MsgRoleSelectHandler.h │ ├── NavigationSystem.cpp │ ├── NavigationSystem.h │ ├── Network │ │ ├── MsgCommon.pb.cc │ │ ├── MsgCommon.pb.h │ │ ├── MsgConnect.pb.cc │ │ ├── MsgConnect.pb.h │ │ ├── MsgError.pb.cc │ │ ├── MsgError.pb.h │ │ ├── MsgInproc.pb.cc │ │ ├── MsgInproc.pb.h │ │ ├── MsgLoginStep.pb.cc │ │ ├── MsgLoginStep.pb.h │ │ ├── MsgMove.pb.cc │ │ ├── MsgMove.pb.h │ │ ├── MsgNetwork.pb.cc │ │ ├── MsgNetwork.pb.h │ │ ├── MsgRoleInfo.pb.cc │ │ ├── MsgRoleInfo.pb.h │ │ ├── MsgRoleSelect.pb.cc │ │ └── MsgRoleSelect.pb.h │ ├── Octree.cpp │ ├── Octree.h │ ├── Proto │ │ ├── BuildAllMessages.bat │ │ ├── MsgCommon.proto │ │ ├── MsgConnect.proto │ │ ├── MsgError.proto │ │ ├── MsgInproc.proto │ │ ├── MsgLoginStep.proto │ │ ├── MsgMove.proto │ │ ├── MsgNetwork.proto │ │ ├── MsgRoleInfo.proto │ │ └── MsgRoleSelect.proto │ ├── Region.cpp │ ├── Region.h │ ├── Role.cpp │ ├── Role.h │ ├── RoleMgr.cpp │ ├── RoleMgr.h │ ├── RoleTypeData.h │ ├── RoleTypeSet.cpp │ ├── RoleTypeSet.h │ ├── Scene.cpp │ ├── Scene.h │ ├── SceneData.h │ ├── SceneDef.h │ ├── SceneMgr.cpp │ ├── SceneMgr.h │ ├── SceneMovable.cpp │ ├── SceneMovable.h │ ├── SceneObject.cpp │ ├── SceneObject.h │ ├── SceneStatic.cpp │ ├── SceneStatic.h │ ├── Server.vcxproj │ ├── Server.vcxproj.filters │ ├── ServerSocketKernel.cpp │ ├── ServerSocketKernel.h │ ├── StatusTypeData.h │ ├── StrDef.h │ ├── User.cpp │ ├── User.h │ ├── UserData.h │ ├── UserMagic.cpp │ ├── UserMagic.h │ ├── UserMgr.cpp │ └── UserMgr.h ├── Shared │ ├── BaseDefine.h │ ├── DKMap.h │ ├── FKMap.h │ ├── GameDatabase.cpp │ ├── GameDatabase.h │ ├── GameObject.cpp │ ├── GameObject.h │ ├── INIReader.cpp │ ├── INIReader.h │ ├── JuceLibraryCode │ │ ├── AppConfig.h │ │ ├── JuceHeader.h │ │ ├── ReadMe.txt │ │ └── modules │ │ │ ├── juce_core │ │ │ ├── containers │ │ │ │ ├── juce_AbstractFifo.cpp │ │ │ │ ├── juce_AbstractFifo.h │ │ │ │ ├── juce_Array.h │ │ │ │ ├── juce_ArrayAllocationBase.h │ │ │ │ ├── juce_DynamicObject.cpp │ │ │ │ ├── juce_DynamicObject.h │ │ │ │ ├── juce_ElementComparator.h │ │ │ │ ├── juce_HashMap.h │ │ │ │ ├── juce_LinkedListPointer.h │ │ │ │ ├── juce_NamedValueSet.cpp │ │ │ │ ├── juce_NamedValueSet.h │ │ │ │ ├── juce_OwnedArray.h │ │ │ │ ├── juce_PropertySet.cpp │ │ │ │ ├── juce_PropertySet.h │ │ │ │ ├── juce_ReferenceCountedArray.h │ │ │ │ ├── juce_ScopedValueSetter.h │ │ │ │ ├── juce_SortedSet.h │ │ │ │ ├── juce_SparseSet.h │ │ │ │ ├── juce_Variant.cpp │ │ │ │ └── juce_Variant.h │ │ │ ├── files │ │ │ │ ├── juce_DirectoryIterator.cpp │ │ │ │ ├── juce_DirectoryIterator.h │ │ │ │ ├── juce_File.cpp │ │ │ │ ├── juce_File.h │ │ │ │ ├── juce_FileFilter.cpp │ │ │ │ ├── juce_FileFilter.h │ │ │ │ ├── juce_FileInputStream.cpp │ │ │ │ ├── juce_FileInputStream.h │ │ │ │ ├── juce_FileOutputStream.cpp │ │ │ │ ├── juce_FileOutputStream.h │ │ │ │ ├── juce_FileSearchPath.cpp │ │ │ │ ├── juce_FileSearchPath.h │ │ │ │ ├── juce_MemoryMappedFile.h │ │ │ │ ├── juce_TemporaryFile.cpp │ │ │ │ ├── juce_TemporaryFile.h │ │ │ │ ├── juce_WildcardFileFilter.cpp │ │ │ │ └── juce_WildcardFileFilter.h │ │ │ ├── javascript │ │ │ │ ├── juce_JSON.cpp │ │ │ │ ├── juce_JSON.h │ │ │ │ ├── juce_Javascript.cpp │ │ │ │ └── juce_Javascript.h │ │ │ ├── juce_core.cpp │ │ │ ├── juce_core.h │ │ │ ├── juce_core.mm │ │ │ ├── juce_module_info │ │ │ ├── logging │ │ │ │ ├── juce_FileLogger.cpp │ │ │ │ ├── juce_FileLogger.h │ │ │ │ ├── juce_Logger.cpp │ │ │ │ └── juce_Logger.h │ │ │ ├── maths │ │ │ │ ├── juce_BigInteger.cpp │ │ │ │ ├── juce_BigInteger.h │ │ │ │ ├── juce_Expression.cpp │ │ │ │ ├── juce_Expression.h │ │ │ │ ├── juce_MathsFunctions.h │ │ │ │ ├── juce_NormalisableRange.h │ │ │ │ ├── juce_Random.cpp │ │ │ │ ├── juce_Random.h │ │ │ │ └── juce_Range.h │ │ │ ├── memory │ │ │ │ ├── juce_Atomic.h │ │ │ │ ├── juce_ByteOrder.h │ │ │ │ ├── juce_ContainerDeletePolicy.h │ │ │ │ ├── juce_HeapBlock.h │ │ │ │ ├── juce_LeakedObjectDetector.h │ │ │ │ ├── juce_Memory.h │ │ │ │ ├── juce_MemoryBlock.cpp │ │ │ │ ├── juce_MemoryBlock.h │ │ │ │ ├── juce_OptionalScopedPointer.h │ │ │ │ ├── juce_ReferenceCountedObject.h │ │ │ │ ├── juce_ScopedPointer.h │ │ │ │ ├── juce_SharedResourcePointer.h │ │ │ │ ├── juce_Singleton.h │ │ │ │ └── juce_WeakReference.h │ │ │ ├── misc │ │ │ │ ├── juce_Result.cpp │ │ │ │ ├── juce_Result.h │ │ │ │ ├── juce_Uuid.cpp │ │ │ │ ├── juce_Uuid.h │ │ │ │ └── juce_WindowsRegistry.h │ │ │ ├── native │ │ │ │ ├── java │ │ │ │ │ └── JuceAppActivity.java │ │ │ │ ├── juce_BasicNativeHeaders.h │ │ │ │ ├── juce_android_Files.cpp │ │ │ │ ├── juce_android_JNIHelpers.h │ │ │ │ ├── juce_android_Misc.cpp │ │ │ │ ├── juce_android_Network.cpp │ │ │ │ ├── juce_android_SystemStats.cpp │ │ │ │ ├── juce_android_Threads.cpp │ │ │ │ ├── juce_linux_CommonFile.cpp │ │ │ │ ├── juce_linux_Files.cpp │ │ │ │ ├── juce_linux_Network.cpp │ │ │ │ ├── juce_linux_SystemStats.cpp │ │ │ │ ├── juce_linux_Threads.cpp │ │ │ │ ├── juce_mac_Files.mm │ │ │ │ ├── juce_mac_Network.mm │ │ │ │ ├── juce_mac_Strings.mm │ │ │ │ ├── juce_mac_SystemStats.mm │ │ │ │ ├── juce_mac_Threads.mm │ │ │ │ ├── juce_osx_ObjCHelpers.h │ │ │ │ ├── juce_posix_NamedPipe.cpp │ │ │ │ ├── juce_posix_SharedCode.h │ │ │ │ ├── juce_win32_ComSmartPtr.h │ │ │ │ ├── juce_win32_Files.cpp │ │ │ │ ├── juce_win32_Network.cpp │ │ │ │ ├── juce_win32_Registry.cpp │ │ │ │ ├── juce_win32_SystemStats.cpp │ │ │ │ └── juce_win32_Threads.cpp │ │ │ ├── network │ │ │ │ ├── juce_IPAddress.cpp │ │ │ │ ├── juce_IPAddress.h │ │ │ │ ├── juce_MACAddress.cpp │ │ │ │ ├── juce_MACAddress.h │ │ │ │ ├── juce_NamedPipe.cpp │ │ │ │ ├── juce_NamedPipe.h │ │ │ │ ├── juce_Socket.cpp │ │ │ │ ├── juce_Socket.h │ │ │ │ ├── juce_URL.cpp │ │ │ │ └── juce_URL.h │ │ │ ├── streams │ │ │ │ ├── juce_BufferedInputStream.cpp │ │ │ │ ├── juce_BufferedInputStream.h │ │ │ │ ├── juce_FileInputSource.cpp │ │ │ │ ├── juce_FileInputSource.h │ │ │ │ ├── juce_InputSource.h │ │ │ │ ├── juce_InputStream.cpp │ │ │ │ ├── juce_InputStream.h │ │ │ │ ├── juce_MemoryInputStream.cpp │ │ │ │ ├── juce_MemoryInputStream.h │ │ │ │ ├── juce_MemoryOutputStream.cpp │ │ │ │ ├── juce_MemoryOutputStream.h │ │ │ │ ├── juce_OutputStream.cpp │ │ │ │ ├── juce_OutputStream.h │ │ │ │ ├── juce_SubregionStream.cpp │ │ │ │ └── juce_SubregionStream.h │ │ │ ├── system │ │ │ │ ├── juce_CompilerSupport.h │ │ │ │ ├── juce_PlatformDefs.h │ │ │ │ ├── juce_StandardHeader.h │ │ │ │ ├── juce_SystemStats.cpp │ │ │ │ ├── juce_SystemStats.h │ │ │ │ └── juce_TargetPlatform.h │ │ │ ├── text │ │ │ │ ├── juce_CharPointer_ASCII.h │ │ │ │ ├── juce_CharPointer_UTF16.h │ │ │ │ ├── juce_CharPointer_UTF32.h │ │ │ │ ├── juce_CharPointer_UTF8.h │ │ │ │ ├── juce_CharacterFunctions.cpp │ │ │ │ ├── juce_CharacterFunctions.h │ │ │ │ ├── juce_Identifier.cpp │ │ │ │ ├── juce_Identifier.h │ │ │ │ ├── juce_LocalisedStrings.cpp │ │ │ │ ├── juce_LocalisedStrings.h │ │ │ │ ├── juce_NewLine.h │ │ │ │ ├── juce_String.cpp │ │ │ │ ├── juce_String.h │ │ │ │ ├── juce_StringArray.cpp │ │ │ │ ├── juce_StringArray.h │ │ │ │ ├── juce_StringPairArray.cpp │ │ │ │ ├── juce_StringPairArray.h │ │ │ │ ├── juce_StringPool.cpp │ │ │ │ ├── juce_StringPool.h │ │ │ │ ├── juce_StringRef.h │ │ │ │ ├── juce_TextDiff.cpp │ │ │ │ └── juce_TextDiff.h │ │ │ ├── threads │ │ │ │ ├── juce_ChildProcess.cpp │ │ │ │ ├── juce_ChildProcess.h │ │ │ │ ├── juce_CriticalSection.h │ │ │ │ ├── juce_DynamicLibrary.h │ │ │ │ ├── juce_HighResolutionTimer.cpp │ │ │ │ ├── juce_HighResolutionTimer.h │ │ │ │ ├── juce_InterProcessLock.h │ │ │ │ ├── juce_Process.h │ │ │ │ ├── juce_ReadWriteLock.cpp │ │ │ │ ├── juce_ReadWriteLock.h │ │ │ │ ├── juce_ScopedLock.h │ │ │ │ ├── juce_ScopedReadLock.h │ │ │ │ ├── juce_ScopedWriteLock.h │ │ │ │ ├── juce_SpinLock.h │ │ │ │ ├── juce_Thread.cpp │ │ │ │ ├── juce_Thread.h │ │ │ │ ├── juce_ThreadLocalValue.h │ │ │ │ ├── juce_ThreadPool.cpp │ │ │ │ ├── juce_ThreadPool.h │ │ │ │ ├── juce_TimeSliceThread.cpp │ │ │ │ ├── juce_TimeSliceThread.h │ │ │ │ └── juce_WaitableEvent.h │ │ │ ├── time │ │ │ │ ├── juce_PerformanceCounter.cpp │ │ │ │ ├── juce_PerformanceCounter.h │ │ │ │ ├── juce_RelativeTime.cpp │ │ │ │ ├── juce_RelativeTime.h │ │ │ │ ├── juce_Time.cpp │ │ │ │ └── juce_Time.h │ │ │ ├── unit_tests │ │ │ │ ├── juce_UnitTest.cpp │ │ │ │ └── juce_UnitTest.h │ │ │ ├── xml │ │ │ │ ├── juce_XmlDocument.cpp │ │ │ │ ├── juce_XmlDocument.h │ │ │ │ ├── juce_XmlElement.cpp │ │ │ │ └── juce_XmlElement.h │ │ │ └── zip │ │ │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ │ │ ├── juce_GZIPCompressorOutputStream.h │ │ │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ │ │ ├── juce_GZIPDecompressorInputStream.h │ │ │ │ ├── juce_ZipFile.cpp │ │ │ │ ├── juce_ZipFile.h │ │ │ │ └── zlib │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.in.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ └── juce_cryptography │ │ │ ├── encryption │ │ │ ├── juce_BlowFish.cpp │ │ │ ├── juce_BlowFish.h │ │ │ ├── juce_Primes.cpp │ │ │ ├── juce_Primes.h │ │ │ ├── juce_RSAKey.cpp │ │ │ └── juce_RSAKey.h │ │ │ ├── hashing │ │ │ ├── juce_MD5.cpp │ │ │ ├── juce_MD5.h │ │ │ ├── juce_SHA256.cpp │ │ │ └── juce_SHA256.h │ │ │ ├── juce_cryptography.cpp │ │ │ ├── juce_cryptography.h │ │ │ ├── juce_cryptography.mm │ │ │ └── juce_module_info │ ├── MemLeakDetect.cpp │ ├── MemLeakDetect.h │ ├── MessagePipe.cpp │ ├── MessagePipe.h │ ├── Shared.jucer │ ├── Shared.vcxproj │ ├── Shared.vcxproj.filters │ ├── SingletonDataMap.h │ ├── StackWalker.cpp │ ├── StackWalker.h │ ├── TimeFormatter.cpp │ ├── TimeFormatter.h │ ├── Timer.cpp │ ├── Timer.h │ ├── TimerMgr.cpp │ ├── TimerMgr.h │ ├── call_stack.hpp │ ├── call_stack_gcc.cpp │ ├── call_stack_msvc.cpp │ ├── dbgint.h │ ├── ini.c │ ├── ini.h │ ├── stack_exception.hpp │ ├── zmq.h │ └── zmq_utils.h ├── Tests │ ├── IniTest │ │ ├── IniTest.vcxproj │ │ └── Main.cpp │ ├── MysqlppTest │ │ ├── Main.cpp │ │ ├── MysqlppTest.vcxproj │ │ ├── MysqlppTest.vcxproj.user │ │ ├── ServerListData.h │ │ ├── StockData.h │ │ └── UserData.h │ ├── OctreeTest │ │ ├── Main.cpp │ │ └── OctreeTest.vcxproj │ ├── RakNetServerTest │ │ ├── Main.cpp │ │ └── RakNetServerTest.vcxproj │ ├── RakNetTest │ │ ├── Main.cpp │ │ └── RakNet.vcxproj │ ├── ZmqClientTest │ │ ├── Main.cpp │ │ └── ZmqClientTest.vcxproj │ └── ZmqServerTest │ │ ├── Main.cpp │ │ └── ZmqServerTest.vcxproj └── Tools │ ├── MysqlppGen │ ├── GenSsqls.py │ ├── config.ini │ ├── genssqls.exe │ ├── templatecpp │ └── templateh │ └── ProtoBuf │ └── protoc.exe ├── ServerEnv ├── GameServer.ini ├── README.md ├── dbghelp.dll ├── dellog.bat ├── libmysql.dll ├── libzmq.dll ├── mysqlpp.dll └── mysqlpp_d.dll ├── Tests ├── config.ini ├── dbghelp.dll ├── libmysql.dll ├── libzmq.dll ├── mysqlpp.dll └── mysqlpp_d.dll └── ThirdParty ├── LibZmq ├── bin │ ├── libzmq.dll │ └── libzmq_d.dll ├── include │ ├── zmq.h │ └── zmq_utils.h └── lib │ ├── libzmq.lib │ └── libzmq_d.lib ├── MySQL ├── COPYING ├── README ├── include │ ├── big_endian.h │ ├── byte_order_generic.h │ ├── byte_order_generic_x86.h │ ├── decimal.h │ ├── errmsg.h │ ├── keycache.h │ ├── little_endian.h │ ├── m_ctype.h │ ├── m_string.h │ ├── my_alloc.h │ ├── my_byteorder.h │ ├── my_compiler.h │ ├── my_config.h │ ├── my_dbug.h │ ├── my_dir.h │ ├── my_getopt.h │ ├── my_global.h │ ├── my_list.h │ ├── my_pthread.h │ ├── my_sys.h │ ├── my_xml.h │ ├── mysql.h │ ├── mysql │ │ ├── client_authentication.h │ │ ├── client_plugin.h │ │ ├── client_plugin.h.pp │ │ ├── get_password.h │ │ ├── plugin_auth_common.h │ │ ├── plugin_trace.h │ │ ├── psi │ │ │ ├── mysql_file.h │ │ │ ├── mysql_idle.h │ │ │ ├── mysql_mdl.h │ │ │ ├── mysql_memory.h │ │ │ ├── mysql_ps.h │ │ │ ├── mysql_socket.h │ │ │ ├── mysql_sp.h │ │ │ ├── mysql_stage.h │ │ │ ├── mysql_statement.h │ │ │ ├── mysql_table.h │ │ │ ├── mysql_thread.h │ │ │ ├── mysql_transaction.h │ │ │ ├── psi.h │ │ │ ├── psi_base.h │ │ │ └── psi_memory.h │ │ ├── service_my_snprintf.h │ │ └── service_mysql_alloc.h │ ├── mysql_com.h │ ├── mysql_com_server.h │ ├── mysql_embed.h │ ├── mysql_time.h │ ├── mysql_version.h │ ├── mysqld_ername.h │ ├── mysqld_error.h │ ├── sql_common.h │ ├── sql_state.h │ ├── sslopt-case.h │ ├── sslopt-longopts.h │ ├── sslopt-vars.h │ └── typelib.h └── lib │ ├── libmysql.dll │ └── libmysql.lib ├── Mysqlpp ├── bin │ ├── mysqlpp.dll │ └── mysqlpp_d.dll ├── include │ ├── autoflag.h │ ├── beemutex.h │ ├── cmdline.h │ ├── common.h │ ├── comparable.h │ ├── connection.h │ ├── cpool.h │ ├── datetime.h │ ├── dbdriver.h │ ├── exceptions.h │ ├── field.h │ ├── field_names.h │ ├── field_types.h │ ├── insertpolicy.h │ ├── manip.h │ ├── myset.h │ ├── mysql++.h │ ├── mysql++.h.in │ ├── mystring.h │ ├── noexceptions.h │ ├── null.h │ ├── options.h │ ├── qparms.h │ ├── query.h │ ├── querydef.h │ ├── refcounted.h │ ├── result.h │ ├── row.h │ ├── scopedconnection.h │ ├── sql_buffer.h │ ├── sql_types.h │ ├── sqlstream.h │ ├── ssqls.h │ ├── ssqls2.h │ ├── stadapter.h │ ├── stream2string.h │ ├── tcp_connection.h │ ├── tiny_int.h │ ├── transaction.h │ ├── type_info.h │ ├── uds_connection.h │ ├── utility.h │ ├── vallist.h │ └── wnp_connection.h └── lib │ ├── mysqlpp.lib │ └── mysqlpp_d.lib ├── OpenSSL ├── OpenSSLhelp.chm ├── bin │ ├── 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 │ └── openssl.cfg ├── 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 │ │ ├── cmac.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 │ │ ├── srp.h │ │ ├── srtp.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 ├── license.txt ├── news.txt └── readme.txt └── ProtoBuf ├── ProtoBufLib.rar └── include └── google └── protobuf ├── any.h ├── any.pb.h ├── api.pb.h ├── arena.h ├── arenastring.h ├── compiler ├── code_generator.h ├── command_line_interface.h ├── cpp │ └── cpp_generator.h ├── csharp │ └── csharp_generator.h ├── importer.h ├── java │ ├── java_generator.h │ └── java_names.h ├── javanano │ └── javanano_generator.h ├── objectivec │ ├── objectivec_generator.h │ └── objectivec_helpers.h ├── parser.h ├── plugin.h ├── plugin.pb.h ├── python │ └── python_generator.h └── ruby │ └── ruby_generator.h ├── descriptor.h ├── descriptor.pb.h ├── descriptor_database.h ├── duration.pb.h ├── dynamic_message.h ├── empty.pb.h ├── extension_set.h ├── field_mask.pb.h ├── generated_enum_reflection.h ├── generated_enum_util.h ├── generated_message_reflection.h ├── generated_message_util.h ├── io ├── coded_stream.h ├── gzip_stream.h ├── printer.h ├── strtod.h ├── tokenizer.h ├── zero_copy_stream.h ├── zero_copy_stream_impl.h └── zero_copy_stream_impl_lite.h ├── map.h ├── map_entry.h ├── map_entry_lite.h ├── map_field.h ├── map_field_inl.h ├── map_field_lite.h ├── map_type_handler.h ├── message.h ├── message_lite.h ├── metadata.h ├── reflection.h ├── reflection_ops.h ├── repeated_field.h ├── repeated_field_reflection.h ├── service.h ├── source_context.pb.h ├── struct.pb.h ├── stubs ├── atomic_sequence_num.h ├── atomicops.h ├── atomicops_internals_aix.h ├── atomicops_internals_arm64_gcc.h ├── atomicops_internals_arm_gcc.h ├── atomicops_internals_arm_qnx.h ├── atomicops_internals_atomicword_compat.h ├── atomicops_internals_generic_gcc.h ├── atomicops_internals_macosx.h ├── atomicops_internals_mips_gcc.h ├── atomicops_internals_pnacl.h ├── atomicops_internals_solaris.h ├── atomicops_internals_tsan.h ├── atomicops_internals_x86_gcc.h ├── atomicops_internals_x86_msvc.h ├── casts.h ├── common.h ├── fastmem.h ├── hash.h ├── once.h ├── pbconfig.h ├── platform_macros.h ├── shared_ptr.h ├── singleton.h ├── stl_util.h ├── template_util.h └── type_traits.h ├── text_format.h ├── timestamp.pb.h ├── type.pb.h ├── unknown_field_set.h ├── util ├── field_comparator.h ├── json_util.h ├── message_differencer.h ├── type_resolver.h └── type_resolver_util.h ├── wire_format.h ├── wire_format_lite.h ├── wire_format_lite_inl.h └── wrappers.pb.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/.gitignore -------------------------------------------------------------------------------- /Backup/Backup.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Backup/Backup.7z -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/README.md -------------------------------------------------------------------------------- /Server/GameServerData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/GameServerData.sql -------------------------------------------------------------------------------- /Server/GameServerTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/GameServerTable.sql -------------------------------------------------------------------------------- /Server/Lib/Debug/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Debug/libmysql.lib -------------------------------------------------------------------------------- /Server/Lib/Debug/libzmq.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Debug/libzmq.lib -------------------------------------------------------------------------------- /Server/Lib/Debug/mysqlpp_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Debug/mysqlpp_d.lib -------------------------------------------------------------------------------- /Server/Lib/Release/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Release/libmysql.lib -------------------------------------------------------------------------------- /Server/Lib/Release/libzmq.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Release/libzmq.lib -------------------------------------------------------------------------------- /Server/Lib/Release/mysqlpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Lib/Release/mysqlpp.lib -------------------------------------------------------------------------------- /Server/Ozcollide/Ozcollide.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/Ozcollide.vcxproj -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtree.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtree_aabb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtree_aabb.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtree_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtree_poly.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtree_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtree_sphere.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreeaabb_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreeaabb_builder.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreeaabb_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreeaabb_io.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreepoly_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreepoly_builder.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreepoly_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreepoly_io.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreesphere_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreesphere_builder.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/aabbtreesphere_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/aabbtreesphere_io.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/box.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/dataio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/dataio.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/dist_pointbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/dist_pointbox.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/dist_pointline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/dist_pointline.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/ellipsoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ellipsoid.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/frustum.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_boxbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_boxbox.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_frustumsphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_frustumsphere.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_linebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_linebox.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_lineline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_lineline.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_segmenttri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_segmenttri.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_spherebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_spherebox.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_sphereline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_sphereline.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_spheretri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_spheretri.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_tribox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_tribox.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/intr_tripoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/intr_tripoint.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/matrix.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/obb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/obb.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtree.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtree_aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtree_aabb.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtree_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtree_poly.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtree_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtree_sphere.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtreeaabb_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtreeaabb_builder.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtreepoly_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtreepoly_builder.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/aabbtreesphere_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/aabbtreesphere_builder.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/box.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/dataio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/dataio.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/dist_pointbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/dist_pointbox.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/dist_pointline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/dist_pointline.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/ellipsoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/ellipsoid.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/frustum.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_boxbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_boxbox.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_frustumsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_frustumsphere.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_linebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_linebox.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_lineline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_lineline.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_segmenttri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_segmenttri.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_spherebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_spherebox.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_sphereline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_sphereline.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_spheretri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_spheretri.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_tribox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_tribox.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/intr_tripoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/intr_tripoint.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/matrix.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/monitor.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/obb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/obb.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/ozcollide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/ozcollide.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/plane.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/polygon.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/sphere.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/vec2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/vec2f.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/vec3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/vec3f.h -------------------------------------------------------------------------------- /Server/Ozcollide/ozcollide/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/ozcollide/vector.h -------------------------------------------------------------------------------- /Server/Ozcollide/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/plane.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/polygon.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/sphere.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/vec2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/vec2f.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/vec3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/vec3f.cpp -------------------------------------------------------------------------------- /Server/Ozcollide/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Ozcollide/vector.cpp -------------------------------------------------------------------------------- /Server/RakNet/AutopatcherPatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/AutopatcherPatchContext.h -------------------------------------------------------------------------------- /Server/RakNet/AutopatcherRepositoryInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/AutopatcherRepositoryInterface.h -------------------------------------------------------------------------------- /Server/RakNet/Base64Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Base64Encoder.cpp -------------------------------------------------------------------------------- /Server/RakNet/Base64Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Base64Encoder.h -------------------------------------------------------------------------------- /Server/RakNet/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/BitStream.cpp -------------------------------------------------------------------------------- /Server/RakNet/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/BitStream.h -------------------------------------------------------------------------------- /Server/RakNet/CCRakNetSlidingWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CCRakNetSlidingWindow.cpp -------------------------------------------------------------------------------- /Server/RakNet/CCRakNetSlidingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CCRakNetSlidingWindow.h -------------------------------------------------------------------------------- /Server/RakNet/CCRakNetUDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CCRakNetUDT.cpp -------------------------------------------------------------------------------- /Server/RakNet/CCRakNetUDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CCRakNetUDT.h -------------------------------------------------------------------------------- /Server/RakNet/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CheckSum.cpp -------------------------------------------------------------------------------- /Server/RakNet/CheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CheckSum.h -------------------------------------------------------------------------------- /Server/RakNet/CloudClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/CloudClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudClient.h -------------------------------------------------------------------------------- /Server/RakNet/CloudCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudCommon.cpp -------------------------------------------------------------------------------- /Server/RakNet/CloudCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudCommon.h -------------------------------------------------------------------------------- /Server/RakNet/CloudServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudServer.cpp -------------------------------------------------------------------------------- /Server/RakNet/CloudServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CloudServer.h -------------------------------------------------------------------------------- /Server/RakNet/CommandParserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CommandParserInterface.cpp -------------------------------------------------------------------------------- /Server/RakNet/CommandParserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/CommandParserInterface.h -------------------------------------------------------------------------------- /Server/RakNet/ConnectionGraph2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ConnectionGraph2.cpp -------------------------------------------------------------------------------- /Server/RakNet/ConnectionGraph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ConnectionGraph2.h -------------------------------------------------------------------------------- /Server/RakNet/ConsoleServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ConsoleServer.cpp -------------------------------------------------------------------------------- /Server/RakNet/ConsoleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ConsoleServer.h -------------------------------------------------------------------------------- /Server/RakNet/DR_SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DR_SHA1.cpp -------------------------------------------------------------------------------- /Server/RakNet/DR_SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DR_SHA1.h -------------------------------------------------------------------------------- /Server/RakNet/DS_BPlusTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_BPlusTree.h -------------------------------------------------------------------------------- /Server/RakNet/DS_BinarySearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_BinarySearchTree.h -------------------------------------------------------------------------------- /Server/RakNet/DS_BytePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_BytePool.cpp -------------------------------------------------------------------------------- /Server/RakNet/DS_BytePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_BytePool.h -------------------------------------------------------------------------------- /Server/RakNet/DS_ByteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_ByteQueue.cpp -------------------------------------------------------------------------------- /Server/RakNet/DS_ByteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_ByteQueue.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Hash.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Heap.h -------------------------------------------------------------------------------- /Server/RakNet/DS_HuffmanEncodingTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_HuffmanEncodingTree.cpp -------------------------------------------------------------------------------- /Server/RakNet/DS_HuffmanEncodingTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_HuffmanEncodingTree.h -------------------------------------------------------------------------------- /Server/RakNet/DS_HuffmanEncodingTreeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_HuffmanEncodingTreeFactory.h -------------------------------------------------------------------------------- /Server/RakNet/DS_HuffmanEncodingTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_HuffmanEncodingTreeNode.h -------------------------------------------------------------------------------- /Server/RakNet/DS_LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_LinkedList.h -------------------------------------------------------------------------------- /Server/RakNet/DS_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_List.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Map.h -------------------------------------------------------------------------------- /Server/RakNet/DS_MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_MemoryPool.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Multilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Multilist.h -------------------------------------------------------------------------------- /Server/RakNet/DS_OrderedChannelHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_OrderedChannelHeap.h -------------------------------------------------------------------------------- /Server/RakNet/DS_OrderedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_OrderedList.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Queue.h -------------------------------------------------------------------------------- /Server/RakNet/DS_QueueLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_QueueLinkedList.h -------------------------------------------------------------------------------- /Server/RakNet/DS_RangeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_RangeList.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Table.cpp -------------------------------------------------------------------------------- /Server/RakNet/DS_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Table.h -------------------------------------------------------------------------------- /Server/RakNet/DS_ThreadsafeAllocatingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_ThreadsafeAllocatingQueue.h -------------------------------------------------------------------------------- /Server/RakNet/DS_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_Tree.h -------------------------------------------------------------------------------- /Server/RakNet/DS_WeightedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DS_WeightedGraph.h -------------------------------------------------------------------------------- /Server/RakNet/DataCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DataCompressor.cpp -------------------------------------------------------------------------------- /Server/RakNet/DataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DataCompressor.h -------------------------------------------------------------------------------- /Server/RakNet/DirectoryDeltaTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DirectoryDeltaTransfer.cpp -------------------------------------------------------------------------------- /Server/RakNet/DirectoryDeltaTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DirectoryDeltaTransfer.h -------------------------------------------------------------------------------- /Server/RakNet/DynDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DynDNS.cpp -------------------------------------------------------------------------------- /Server/RakNet/DynDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/DynDNS.h -------------------------------------------------------------------------------- /Server/RakNet/EmailSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/EmailSender.cpp -------------------------------------------------------------------------------- /Server/RakNet/EmailSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/EmailSender.h -------------------------------------------------------------------------------- /Server/RakNet/EmptyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/EmptyHeader.h -------------------------------------------------------------------------------- /Server/RakNet/EpochTimeToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/EpochTimeToString.cpp -------------------------------------------------------------------------------- /Server/RakNet/EpochTimeToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/EpochTimeToString.h -------------------------------------------------------------------------------- /Server/RakNet/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Export.h -------------------------------------------------------------------------------- /Server/RakNet/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileList.cpp -------------------------------------------------------------------------------- /Server/RakNet/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileList.h -------------------------------------------------------------------------------- /Server/RakNet/FileListNodeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileListNodeContext.h -------------------------------------------------------------------------------- /Server/RakNet/FileListTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileListTransfer.cpp -------------------------------------------------------------------------------- /Server/RakNet/FileListTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileListTransfer.h -------------------------------------------------------------------------------- /Server/RakNet/FileListTransferCBInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileListTransferCBInterface.h -------------------------------------------------------------------------------- /Server/RakNet/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileOperations.cpp -------------------------------------------------------------------------------- /Server/RakNet/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FileOperations.h -------------------------------------------------------------------------------- /Server/RakNet/FormatString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FormatString.cpp -------------------------------------------------------------------------------- /Server/RakNet/FormatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FormatString.h -------------------------------------------------------------------------------- /Server/RakNet/FullyConnectedMesh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FullyConnectedMesh2.cpp -------------------------------------------------------------------------------- /Server/RakNet/FullyConnectedMesh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/FullyConnectedMesh2.h -------------------------------------------------------------------------------- /Server/RakNet/GetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/GetTime.cpp -------------------------------------------------------------------------------- /Server/RakNet/GetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/GetTime.h -------------------------------------------------------------------------------- /Server/RakNet/Getche.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Getche.cpp -------------------------------------------------------------------------------- /Server/RakNet/Getche.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Getche.h -------------------------------------------------------------------------------- /Server/RakNet/Gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Gets.cpp -------------------------------------------------------------------------------- /Server/RakNet/Gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Gets.h -------------------------------------------------------------------------------- /Server/RakNet/GridSectorizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/GridSectorizer.cpp -------------------------------------------------------------------------------- /Server/RakNet/GridSectorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/GridSectorizer.h -------------------------------------------------------------------------------- /Server/RakNet/HTTPConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/HTTPConnection.cpp -------------------------------------------------------------------------------- /Server/RakNet/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/HTTPConnection.h -------------------------------------------------------------------------------- /Server/RakNet/HTTPConnection2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/HTTPConnection2.cpp -------------------------------------------------------------------------------- /Server/RakNet/HTTPConnection2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/HTTPConnection2.h -------------------------------------------------------------------------------- /Server/RakNet/IncrementalReadInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/IncrementalReadInterface.cpp -------------------------------------------------------------------------------- /Server/RakNet/IncrementalReadInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/IncrementalReadInterface.h -------------------------------------------------------------------------------- /Server/RakNet/InternalPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/InternalPacket.h -------------------------------------------------------------------------------- /Server/RakNet/Itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Itoa.cpp -------------------------------------------------------------------------------- /Server/RakNet/Itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Itoa.h -------------------------------------------------------------------------------- /Server/RakNet/Kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Kbhit.h -------------------------------------------------------------------------------- /Server/RakNet/LinuxStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LinuxStrings.cpp -------------------------------------------------------------------------------- /Server/RakNet/LinuxStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LinuxStrings.h -------------------------------------------------------------------------------- /Server/RakNet/LocklessTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LocklessTypes.cpp -------------------------------------------------------------------------------- /Server/RakNet/LocklessTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LocklessTypes.h -------------------------------------------------------------------------------- /Server/RakNet/LogCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LogCommandParser.cpp -------------------------------------------------------------------------------- /Server/RakNet/LogCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/LogCommandParser.h -------------------------------------------------------------------------------- /Server/RakNet/MTUSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/MTUSize.h -------------------------------------------------------------------------------- /Server/RakNet/MessageFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/MessageFilter.cpp -------------------------------------------------------------------------------- /Server/RakNet/MessageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/MessageFilter.h -------------------------------------------------------------------------------- /Server/RakNet/MessageIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/MessageIdentifiers.h -------------------------------------------------------------------------------- /Server/RakNet/NatPunchthroughClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatPunchthroughClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/NatPunchthroughClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatPunchthroughClient.h -------------------------------------------------------------------------------- /Server/RakNet/NatPunchthroughServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatPunchthroughServer.cpp -------------------------------------------------------------------------------- /Server/RakNet/NatPunchthroughServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatPunchthroughServer.h -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionClient.h -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionCommon.cpp -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionCommon.h -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionServer.cpp -------------------------------------------------------------------------------- /Server/RakNet/NatTypeDetectionServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NatTypeDetectionServer.h -------------------------------------------------------------------------------- /Server/RakNet/NativeFeatureIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NativeFeatureIncludes.h -------------------------------------------------------------------------------- /Server/RakNet/NativeFeatureIncludesOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NativeFeatureIncludesOverrides.h -------------------------------------------------------------------------------- /Server/RakNet/NativeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NativeTypes.h -------------------------------------------------------------------------------- /Server/RakNet/NetworkIDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NetworkIDManager.cpp -------------------------------------------------------------------------------- /Server/RakNet/NetworkIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NetworkIDManager.h -------------------------------------------------------------------------------- /Server/RakNet/NetworkIDObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NetworkIDObject.cpp -------------------------------------------------------------------------------- /Server/RakNet/NetworkIDObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/NetworkIDObject.h -------------------------------------------------------------------------------- /Server/RakNet/PS3Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PS3Includes.h -------------------------------------------------------------------------------- /Server/RakNet/PS4Includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PS4Includes.cpp -------------------------------------------------------------------------------- /Server/RakNet/PS4Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PS4Includes.h -------------------------------------------------------------------------------- /Server/RakNet/PacketConsoleLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketConsoleLogger.cpp -------------------------------------------------------------------------------- /Server/RakNet/PacketConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketConsoleLogger.h -------------------------------------------------------------------------------- /Server/RakNet/PacketFileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketFileLogger.cpp -------------------------------------------------------------------------------- /Server/RakNet/PacketFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketFileLogger.h -------------------------------------------------------------------------------- /Server/RakNet/PacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketLogger.cpp -------------------------------------------------------------------------------- /Server/RakNet/PacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketLogger.h -------------------------------------------------------------------------------- /Server/RakNet/PacketOutputWindowLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketOutputWindowLogger.cpp -------------------------------------------------------------------------------- /Server/RakNet/PacketOutputWindowLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketOutputWindowLogger.h -------------------------------------------------------------------------------- /Server/RakNet/PacketPool.h: -------------------------------------------------------------------------------- 1 | // REMOVEME -------------------------------------------------------------------------------- /Server/RakNet/PacketPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketPriority.h -------------------------------------------------------------------------------- /Server/RakNet/PacketizedTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketizedTCP.cpp -------------------------------------------------------------------------------- /Server/RakNet/PacketizedTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PacketizedTCP.h -------------------------------------------------------------------------------- /Server/RakNet/PluginInterface2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PluginInterface2.cpp -------------------------------------------------------------------------------- /Server/RakNet/PluginInterface2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/PluginInterface2.h -------------------------------------------------------------------------------- /Server/RakNet/RPC4Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RPC4Plugin.cpp -------------------------------------------------------------------------------- /Server/RakNet/RPC4Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RPC4Plugin.h -------------------------------------------------------------------------------- /Server/RakNet/Rackspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Rackspace.cpp -------------------------------------------------------------------------------- /Server/RakNet/Rackspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Rackspace.h -------------------------------------------------------------------------------- /Server/RakNet/RakAlloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakAlloca.h -------------------------------------------------------------------------------- /Server/RakNet/RakAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakAssert.h -------------------------------------------------------------------------------- /Server/RakNet/RakMemoryOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakMemoryOverride.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakMemoryOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakMemoryOverride.h -------------------------------------------------------------------------------- /Server/RakNet/RakNet.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNet.vcproj -------------------------------------------------------------------------------- /Server/RakNet/RakNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNet.vcxproj -------------------------------------------------------------------------------- /Server/RakNet/RakNetCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetCommandParser.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetCommandParser.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetDefines.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetDefinesOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetDefinesOverrides.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSmartPtr.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_360_720.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_360_720.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_Berkley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_Berkley.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_Berkley_NativeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_Berkley_NativeClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_NativeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_NativeClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_PS3_PS4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_PS3_PS4.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_PS4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_PS4.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_Vita.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_Vita.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_WindowsStore8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_WindowsStore8.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_Windows_Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_Windows_Linux.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetSocket2_Windows_Linux_360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetSocket2_Windows_Linux_360.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetStatistics.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetStatistics.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetTime.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetTransport2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetTransport2.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetTransport2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetTransport2.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetTypes.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakNetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetTypes.h -------------------------------------------------------------------------------- /Server/RakNet/RakNetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNetVersion.h -------------------------------------------------------------------------------- /Server/RakNet/RakNet_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNet_vc8.vcproj -------------------------------------------------------------------------------- /Server/RakNet/RakNet_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakNet_vc9.vcproj -------------------------------------------------------------------------------- /Server/RakNet/RakPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakPeer.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakPeer.h -------------------------------------------------------------------------------- /Server/RakNet/RakPeerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakPeerInterface.h -------------------------------------------------------------------------------- /Server/RakNet/RakSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakSleep.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakSleep.h -------------------------------------------------------------------------------- /Server/RakNet/RakString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakString.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakString.h -------------------------------------------------------------------------------- /Server/RakNet/RakThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakThread.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakThread.h -------------------------------------------------------------------------------- /Server/RakNet/RakWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakWString.cpp -------------------------------------------------------------------------------- /Server/RakNet/RakWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RakWString.h -------------------------------------------------------------------------------- /Server/RakNet/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Rand.cpp -------------------------------------------------------------------------------- /Server/RakNet/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Rand.h -------------------------------------------------------------------------------- /Server/RakNet/RandSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RandSync.cpp -------------------------------------------------------------------------------- /Server/RakNet/RandSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RandSync.h -------------------------------------------------------------------------------- /Server/RakNet/ReadyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReadyEvent.cpp -------------------------------------------------------------------------------- /Server/RakNet/ReadyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReadyEvent.h -------------------------------------------------------------------------------- /Server/RakNet/RefCountedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RefCountedObj.h -------------------------------------------------------------------------------- /Server/RakNet/RelayPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RelayPlugin.cpp -------------------------------------------------------------------------------- /Server/RakNet/RelayPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/RelayPlugin.h -------------------------------------------------------------------------------- /Server/RakNet/ReliabilityLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReliabilityLayer.cpp -------------------------------------------------------------------------------- /Server/RakNet/ReliabilityLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReliabilityLayer.h -------------------------------------------------------------------------------- /Server/RakNet/ReplicaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReplicaEnums.h -------------------------------------------------------------------------------- /Server/RakNet/ReplicaManager3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReplicaManager3.cpp -------------------------------------------------------------------------------- /Server/RakNet/ReplicaManager3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ReplicaManager3.h -------------------------------------------------------------------------------- /Server/RakNet/Router2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Router2.cpp -------------------------------------------------------------------------------- /Server/RakNet/Router2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/Router2.h -------------------------------------------------------------------------------- /Server/RakNet/SecureHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SecureHandshake.cpp -------------------------------------------------------------------------------- /Server/RakNet/SecureHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SecureHandshake.h -------------------------------------------------------------------------------- /Server/RakNet/SendToThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SendToThread.cpp -------------------------------------------------------------------------------- /Server/RakNet/SendToThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SendToThread.h -------------------------------------------------------------------------------- /Server/RakNet/SignaledEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SignaledEvent.cpp -------------------------------------------------------------------------------- /Server/RakNet/SignaledEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SignaledEvent.h -------------------------------------------------------------------------------- /Server/RakNet/SimpleMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SimpleMutex.cpp -------------------------------------------------------------------------------- /Server/RakNet/SimpleMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SimpleMutex.h -------------------------------------------------------------------------------- /Server/RakNet/SimpleTCPServer.h: -------------------------------------------------------------------------------- 1 | // Eraseme -------------------------------------------------------------------------------- /Server/RakNet/SingleProducerConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SingleProducerConsumer.h -------------------------------------------------------------------------------- /Server/RakNet/SocketDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SocketDefines.h -------------------------------------------------------------------------------- /Server/RakNet/SocketIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SocketIncludes.h -------------------------------------------------------------------------------- /Server/RakNet/SocketLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SocketLayer.cpp -------------------------------------------------------------------------------- /Server/RakNet/SocketLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SocketLayer.h -------------------------------------------------------------------------------- /Server/RakNet/StatisticsHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StatisticsHistory.cpp -------------------------------------------------------------------------------- /Server/RakNet/StatisticsHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StatisticsHistory.h -------------------------------------------------------------------------------- /Server/RakNet/StringCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StringCompressor.cpp -------------------------------------------------------------------------------- /Server/RakNet/StringCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StringCompressor.h -------------------------------------------------------------------------------- /Server/RakNet/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StringTable.cpp -------------------------------------------------------------------------------- /Server/RakNet/StringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/StringTable.h -------------------------------------------------------------------------------- /Server/RakNet/SuperFastHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SuperFastHash.cpp -------------------------------------------------------------------------------- /Server/RakNet/SuperFastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/SuperFastHash.h -------------------------------------------------------------------------------- /Server/RakNet/TCPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TCPInterface.cpp -------------------------------------------------------------------------------- /Server/RakNet/TCPInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TCPInterface.h -------------------------------------------------------------------------------- /Server/RakNet/TableSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TableSerializer.cpp -------------------------------------------------------------------------------- /Server/RakNet/TableSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TableSerializer.h -------------------------------------------------------------------------------- /Server/RakNet/TeamBalancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TeamBalancer.cpp -------------------------------------------------------------------------------- /Server/RakNet/TeamBalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TeamBalancer.h -------------------------------------------------------------------------------- /Server/RakNet/TeamManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TeamManager.cpp -------------------------------------------------------------------------------- /Server/RakNet/TeamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TeamManager.h -------------------------------------------------------------------------------- /Server/RakNet/TelnetTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TelnetTransport.cpp -------------------------------------------------------------------------------- /Server/RakNet/TelnetTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TelnetTransport.h -------------------------------------------------------------------------------- /Server/RakNet/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ThreadPool.h -------------------------------------------------------------------------------- /Server/RakNet/ThreadsafePacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ThreadsafePacketLogger.cpp -------------------------------------------------------------------------------- /Server/RakNet/ThreadsafePacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/ThreadsafePacketLogger.h -------------------------------------------------------------------------------- /Server/RakNet/TransportInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TransportInterface.h -------------------------------------------------------------------------------- /Server/RakNet/TwoWayAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TwoWayAuthentication.cpp -------------------------------------------------------------------------------- /Server/RakNet/TwoWayAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/TwoWayAuthentication.h -------------------------------------------------------------------------------- /Server/RakNet/UDPForwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPForwarder.cpp -------------------------------------------------------------------------------- /Server/RakNet/UDPForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPForwarder.h -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyClient.cpp -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyClient.h -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyCommon.h -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyCoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyCoordinator.cpp -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyCoordinator.h -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyServer.cpp -------------------------------------------------------------------------------- /Server/RakNet/UDPProxyServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/UDPProxyServer.h -------------------------------------------------------------------------------- /Server/RakNet/VariableDeltaSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariableDeltaSerializer.cpp -------------------------------------------------------------------------------- /Server/RakNet/VariableDeltaSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariableDeltaSerializer.h -------------------------------------------------------------------------------- /Server/RakNet/VariableListDeltaTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariableListDeltaTracker.cpp -------------------------------------------------------------------------------- /Server/RakNet/VariableListDeltaTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariableListDeltaTracker.h -------------------------------------------------------------------------------- /Server/RakNet/VariadicSQLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariadicSQLParser.cpp -------------------------------------------------------------------------------- /Server/RakNet/VariadicSQLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VariadicSQLParser.h -------------------------------------------------------------------------------- /Server/RakNet/VitaIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VitaIncludes.cpp -------------------------------------------------------------------------------- /Server/RakNet/VitaIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/VitaIncludes.h -------------------------------------------------------------------------------- /Server/RakNet/WSAStartupSingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/WSAStartupSingleton.cpp -------------------------------------------------------------------------------- /Server/RakNet/WSAStartupSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/WSAStartupSingleton.h -------------------------------------------------------------------------------- /Server/RakNet/WindowsIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/WindowsIncludes.h -------------------------------------------------------------------------------- /Server/RakNet/XBox360Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/XBox360Includes.h -------------------------------------------------------------------------------- /Server/RakNet/_FindFirst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/_FindFirst.cpp -------------------------------------------------------------------------------- /Server/RakNet/_FindFirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/_FindFirst.h -------------------------------------------------------------------------------- /Server/RakNet/gettimeofday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/gettimeofday.cpp -------------------------------------------------------------------------------- /Server/RakNet/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/RakNet/gettimeofday.h -------------------------------------------------------------------------------- /Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server.sln -------------------------------------------------------------------------------- /Server/Server/AccountSocketKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/AccountSocketKernel.cpp -------------------------------------------------------------------------------- /Server/Server/AccountSocketKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/AccountSocketKernel.h -------------------------------------------------------------------------------- /Server/Server/BasicDataSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/BasicDataSet.cpp -------------------------------------------------------------------------------- /Server/Server/BasicDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/BasicDataSet.h -------------------------------------------------------------------------------- /Server/Server/BasicTypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/BasicTypeDef.h -------------------------------------------------------------------------------- /Server/Server/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Client.cpp -------------------------------------------------------------------------------- /Server/Server/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Client.h -------------------------------------------------------------------------------- /Server/Server/ConfigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/ConfigData.h -------------------------------------------------------------------------------- /Server/Server/DatabaseKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DatabaseKernel.cpp -------------------------------------------------------------------------------- /Server/Server/DatabaseKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DatabaseKernel.h -------------------------------------------------------------------------------- /Server/Server/DbData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DbData.cpp -------------------------------------------------------------------------------- /Server/Server/DbJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DbJob.cpp -------------------------------------------------------------------------------- /Server/Server/DbJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DbJob.h -------------------------------------------------------------------------------- /Server/Server/DbTableDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/DbTableDef.h -------------------------------------------------------------------------------- /Server/Server/GameConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameConfig.cpp -------------------------------------------------------------------------------- /Server/Server/GameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameConfig.h -------------------------------------------------------------------------------- /Server/Server/GameKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameKernel.cpp -------------------------------------------------------------------------------- /Server/Server/GameKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameKernel.h -------------------------------------------------------------------------------- /Server/Server/GameServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameServer.cpp -------------------------------------------------------------------------------- /Server/Server/GameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameServer.h -------------------------------------------------------------------------------- /Server/Server/GameServerDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/GameServerDef.h -------------------------------------------------------------------------------- /Server/Server/Kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Kernel.cpp -------------------------------------------------------------------------------- /Server/Server/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Kernel.h -------------------------------------------------------------------------------- /Server/Server/KernelDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/KernelDef.h -------------------------------------------------------------------------------- /Server/Server/LoginKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/LoginKernel.cpp -------------------------------------------------------------------------------- /Server/Server/LoginKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/LoginKernel.h -------------------------------------------------------------------------------- /Server/Server/Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Magic.cpp -------------------------------------------------------------------------------- /Server/Server/Magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Magic.h -------------------------------------------------------------------------------- /Server/Server/MagicData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicData.h -------------------------------------------------------------------------------- /Server/Server/MagicDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicDef.h -------------------------------------------------------------------------------- /Server/Server/MagicSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicSet.cpp -------------------------------------------------------------------------------- /Server/Server/MagicSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicSet.h -------------------------------------------------------------------------------- /Server/Server/MagicTargetCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicTargetCollector.cpp -------------------------------------------------------------------------------- /Server/Server/MagicTargetCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicTargetCollector.h -------------------------------------------------------------------------------- /Server/Server/MagicTypeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MagicTypeData.h -------------------------------------------------------------------------------- /Server/Server/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Main.cpp -------------------------------------------------------------------------------- /Server/Server/MemRecordset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MemRecordset.cpp -------------------------------------------------------------------------------- /Server/Server/MemRecordset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MemRecordset.h -------------------------------------------------------------------------------- /Server/Server/MoveAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MoveAction.cpp -------------------------------------------------------------------------------- /Server/Server/MoveAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MoveAction.h -------------------------------------------------------------------------------- /Server/Server/MoveList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MoveList.cpp -------------------------------------------------------------------------------- /Server/Server/MoveList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MoveList.h -------------------------------------------------------------------------------- /Server/Server/MsgCommonHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgCommonHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgCommonHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgCommonHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgConnectHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgConnectHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgConnectHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgConnectHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgErrorHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgErrorHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgInprocHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgInprocHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgInprocHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgInprocHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgLoginStepHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgLoginStepHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgLoginStepHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgLoginStepHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgMoveHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgMoveHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgMoveHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgMoveHandler.h -------------------------------------------------------------------------------- /Server/Server/MsgRoleSelectHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgRoleSelectHandler.cpp -------------------------------------------------------------------------------- /Server/Server/MsgRoleSelectHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/MsgRoleSelectHandler.h -------------------------------------------------------------------------------- /Server/Server/NavigationSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/NavigationSystem.cpp -------------------------------------------------------------------------------- /Server/Server/NavigationSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/NavigationSystem.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgCommon.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgCommon.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgCommon.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgCommon.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgConnect.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgConnect.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgConnect.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgConnect.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgError.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgError.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgError.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgError.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgInproc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgInproc.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgInproc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgInproc.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgLoginStep.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgLoginStep.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgLoginStep.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgLoginStep.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgMove.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgMove.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgMove.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgMove.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgNetwork.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgNetwork.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgNetwork.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgNetwork.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgRoleInfo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgRoleInfo.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgRoleInfo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgRoleInfo.pb.h -------------------------------------------------------------------------------- /Server/Server/Network/MsgRoleSelect.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgRoleSelect.pb.cc -------------------------------------------------------------------------------- /Server/Server/Network/MsgRoleSelect.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Network/MsgRoleSelect.pb.h -------------------------------------------------------------------------------- /Server/Server/Octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Octree.cpp -------------------------------------------------------------------------------- /Server/Server/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Octree.h -------------------------------------------------------------------------------- /Server/Server/Proto/BuildAllMessages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/BuildAllMessages.bat -------------------------------------------------------------------------------- /Server/Server/Proto/MsgCommon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgCommon.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgConnect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgConnect.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgError.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgError.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgInproc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgInproc.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgLoginStep.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgLoginStep.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgMove.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgMove.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgNetwork.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgNetwork.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgRoleInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgRoleInfo.proto -------------------------------------------------------------------------------- /Server/Server/Proto/MsgRoleSelect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Proto/MsgRoleSelect.proto -------------------------------------------------------------------------------- /Server/Server/Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Region.cpp -------------------------------------------------------------------------------- /Server/Server/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Region.h -------------------------------------------------------------------------------- /Server/Server/Role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Role.cpp -------------------------------------------------------------------------------- /Server/Server/Role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Role.h -------------------------------------------------------------------------------- /Server/Server/RoleMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/RoleMgr.cpp -------------------------------------------------------------------------------- /Server/Server/RoleMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/RoleMgr.h -------------------------------------------------------------------------------- /Server/Server/RoleTypeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/RoleTypeData.h -------------------------------------------------------------------------------- /Server/Server/RoleTypeSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/RoleTypeSet.cpp -------------------------------------------------------------------------------- /Server/Server/RoleTypeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/RoleTypeSet.h -------------------------------------------------------------------------------- /Server/Server/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Scene.cpp -------------------------------------------------------------------------------- /Server/Server/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Scene.h -------------------------------------------------------------------------------- /Server/Server/SceneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneData.h -------------------------------------------------------------------------------- /Server/Server/SceneDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneDef.h -------------------------------------------------------------------------------- /Server/Server/SceneMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneMgr.cpp -------------------------------------------------------------------------------- /Server/Server/SceneMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneMgr.h -------------------------------------------------------------------------------- /Server/Server/SceneMovable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneMovable.cpp -------------------------------------------------------------------------------- /Server/Server/SceneMovable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneMovable.h -------------------------------------------------------------------------------- /Server/Server/SceneObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneObject.cpp -------------------------------------------------------------------------------- /Server/Server/SceneObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneObject.h -------------------------------------------------------------------------------- /Server/Server/SceneStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneStatic.cpp -------------------------------------------------------------------------------- /Server/Server/SceneStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/SceneStatic.h -------------------------------------------------------------------------------- /Server/Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Server.vcxproj -------------------------------------------------------------------------------- /Server/Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/Server.vcxproj.filters -------------------------------------------------------------------------------- /Server/Server/ServerSocketKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/ServerSocketKernel.cpp -------------------------------------------------------------------------------- /Server/Server/ServerSocketKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/ServerSocketKernel.h -------------------------------------------------------------------------------- /Server/Server/StatusTypeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/StatusTypeData.h -------------------------------------------------------------------------------- /Server/Server/StrDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/StrDef.h -------------------------------------------------------------------------------- /Server/Server/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/User.cpp -------------------------------------------------------------------------------- /Server/Server/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/User.h -------------------------------------------------------------------------------- /Server/Server/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/UserData.h -------------------------------------------------------------------------------- /Server/Server/UserMagic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/UserMagic.cpp -------------------------------------------------------------------------------- /Server/Server/UserMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/UserMagic.h -------------------------------------------------------------------------------- /Server/Server/UserMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/UserMgr.cpp -------------------------------------------------------------------------------- /Server/Server/UserMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Server/UserMgr.h -------------------------------------------------------------------------------- /Server/Shared/BaseDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/BaseDefine.h -------------------------------------------------------------------------------- /Server/Shared/DKMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/DKMap.h -------------------------------------------------------------------------------- /Server/Shared/FKMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/FKMap.h -------------------------------------------------------------------------------- /Server/Shared/GameDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/GameDatabase.cpp -------------------------------------------------------------------------------- /Server/Shared/GameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/GameDatabase.h -------------------------------------------------------------------------------- /Server/Shared/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/GameObject.cpp -------------------------------------------------------------------------------- /Server/Shared/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/GameObject.h -------------------------------------------------------------------------------- /Server/Shared/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/INIReader.cpp -------------------------------------------------------------------------------- /Server/Shared/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/INIReader.h -------------------------------------------------------------------------------- /Server/Shared/JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /Server/Shared/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /Server/Shared/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Server/Shared/JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /Server/Shared/JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /Server/Shared/MemLeakDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/MemLeakDetect.cpp -------------------------------------------------------------------------------- /Server/Shared/MemLeakDetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/MemLeakDetect.h -------------------------------------------------------------------------------- /Server/Shared/MessagePipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/MessagePipe.cpp -------------------------------------------------------------------------------- /Server/Shared/MessagePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/MessagePipe.h -------------------------------------------------------------------------------- /Server/Shared/Shared.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/Shared.jucer -------------------------------------------------------------------------------- /Server/Shared/Shared.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/Shared.vcxproj -------------------------------------------------------------------------------- /Server/Shared/Shared.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/Shared.vcxproj.filters -------------------------------------------------------------------------------- /Server/Shared/SingletonDataMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/SingletonDataMap.h -------------------------------------------------------------------------------- /Server/Shared/StackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/StackWalker.cpp -------------------------------------------------------------------------------- /Server/Shared/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/StackWalker.h -------------------------------------------------------------------------------- /Server/Shared/TimeFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/TimeFormatter.cpp -------------------------------------------------------------------------------- /Server/Shared/TimeFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/TimeFormatter.h -------------------------------------------------------------------------------- /Server/Shared/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/Timer.cpp -------------------------------------------------------------------------------- /Server/Shared/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/Timer.h -------------------------------------------------------------------------------- /Server/Shared/TimerMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/TimerMgr.cpp -------------------------------------------------------------------------------- /Server/Shared/TimerMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/TimerMgr.h -------------------------------------------------------------------------------- /Server/Shared/call_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/call_stack.hpp -------------------------------------------------------------------------------- /Server/Shared/call_stack_gcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/call_stack_gcc.cpp -------------------------------------------------------------------------------- /Server/Shared/call_stack_msvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/call_stack_msvc.cpp -------------------------------------------------------------------------------- /Server/Shared/dbgint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/dbgint.h -------------------------------------------------------------------------------- /Server/Shared/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/ini.c -------------------------------------------------------------------------------- /Server/Shared/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/ini.h -------------------------------------------------------------------------------- /Server/Shared/stack_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/stack_exception.hpp -------------------------------------------------------------------------------- /Server/Shared/zmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/zmq.h -------------------------------------------------------------------------------- /Server/Shared/zmq_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Shared/zmq_utils.h -------------------------------------------------------------------------------- /Server/Tests/IniTest/IniTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/IniTest/IniTest.vcxproj -------------------------------------------------------------------------------- /Server/Tests/IniTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/IniTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/MysqlppTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/MysqlppTest.vcxproj -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/MysqlppTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/MysqlppTest.vcxproj.user -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/ServerListData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/ServerListData.h -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/StockData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/StockData.h -------------------------------------------------------------------------------- /Server/Tests/MysqlppTest/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/MysqlppTest/UserData.h -------------------------------------------------------------------------------- /Server/Tests/OctreeTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/OctreeTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/OctreeTest/OctreeTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/OctreeTest/OctreeTest.vcxproj -------------------------------------------------------------------------------- /Server/Tests/RakNetServerTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/RakNetServerTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/RakNetServerTest/RakNetServerTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/RakNetServerTest/RakNetServerTest.vcxproj -------------------------------------------------------------------------------- /Server/Tests/RakNetTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/RakNetTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/RakNetTest/RakNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/RakNetTest/RakNet.vcxproj -------------------------------------------------------------------------------- /Server/Tests/ZmqClientTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/ZmqClientTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/ZmqClientTest/ZmqClientTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/ZmqClientTest/ZmqClientTest.vcxproj -------------------------------------------------------------------------------- /Server/Tests/ZmqServerTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/ZmqServerTest/Main.cpp -------------------------------------------------------------------------------- /Server/Tests/ZmqServerTest/ZmqServerTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tests/ZmqServerTest/ZmqServerTest.vcxproj -------------------------------------------------------------------------------- /Server/Tools/MysqlppGen/GenSsqls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/MysqlppGen/GenSsqls.py -------------------------------------------------------------------------------- /Server/Tools/MysqlppGen/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/MysqlppGen/config.ini -------------------------------------------------------------------------------- /Server/Tools/MysqlppGen/genssqls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/MysqlppGen/genssqls.exe -------------------------------------------------------------------------------- /Server/Tools/MysqlppGen/templatecpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/MysqlppGen/templatecpp -------------------------------------------------------------------------------- /Server/Tools/MysqlppGen/templateh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/MysqlppGen/templateh -------------------------------------------------------------------------------- /Server/Tools/ProtoBuf/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Server/Tools/ProtoBuf/protoc.exe -------------------------------------------------------------------------------- /ServerEnv/GameServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/GameServer.ini -------------------------------------------------------------------------------- /ServerEnv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/README.md -------------------------------------------------------------------------------- /ServerEnv/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/dbghelp.dll -------------------------------------------------------------------------------- /ServerEnv/dellog.bat: -------------------------------------------------------------------------------- 1 | del *.log -------------------------------------------------------------------------------- /ServerEnv/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/libmysql.dll -------------------------------------------------------------------------------- /ServerEnv/libzmq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/libzmq.dll -------------------------------------------------------------------------------- /ServerEnv/mysqlpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/mysqlpp.dll -------------------------------------------------------------------------------- /ServerEnv/mysqlpp_d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ServerEnv/mysqlpp_d.dll -------------------------------------------------------------------------------- /Tests/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/config.ini -------------------------------------------------------------------------------- /Tests/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/dbghelp.dll -------------------------------------------------------------------------------- /Tests/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/libmysql.dll -------------------------------------------------------------------------------- /Tests/libzmq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/libzmq.dll -------------------------------------------------------------------------------- /Tests/mysqlpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/mysqlpp.dll -------------------------------------------------------------------------------- /Tests/mysqlpp_d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/Tests/mysqlpp_d.dll -------------------------------------------------------------------------------- /ThirdParty/LibZmq/bin/libzmq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/bin/libzmq.dll -------------------------------------------------------------------------------- /ThirdParty/LibZmq/bin/libzmq_d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/bin/libzmq_d.dll -------------------------------------------------------------------------------- /ThirdParty/LibZmq/include/zmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/include/zmq.h -------------------------------------------------------------------------------- /ThirdParty/LibZmq/include/zmq_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/include/zmq_utils.h -------------------------------------------------------------------------------- /ThirdParty/LibZmq/lib/libzmq.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/lib/libzmq.lib -------------------------------------------------------------------------------- /ThirdParty/LibZmq/lib/libzmq_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/LibZmq/lib/libzmq_d.lib -------------------------------------------------------------------------------- /ThirdParty/MySQL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/COPYING -------------------------------------------------------------------------------- /ThirdParty/MySQL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/README -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/big_endian.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/byte_order_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/byte_order_generic.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/byte_order_generic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/byte_order_generic_x86.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/decimal.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/errmsg.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/keycache.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/little_endian.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/m_ctype.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/m_string.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_alloc.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_byteorder.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_compiler.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_config.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_dbug.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_dir.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_getopt.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_global.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_list.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_pthread.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_sys.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/my_xml.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/client_authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/client_authentication.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/client_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/client_plugin.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/client_plugin.h.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/client_plugin.h.pp -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/get_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/get_password.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/plugin_auth_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/plugin_auth_common.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/plugin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/plugin_trace.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_file.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_idle.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_mdl.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_memory.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_ps.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_socket.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_sp.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_stage.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_statement.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_table.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_thread.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/mysql_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/mysql_transaction.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/psi.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/psi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/psi_base.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/psi/psi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/psi/psi_memory.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/service_my_snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/service_my_snprintf.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql/service_mysql_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql/service_mysql_alloc.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql_com.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql_com_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql_com_server.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql_embed.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql_time.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysql_version.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysqld_ername.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/mysqld_error.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/sql_common.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/sql_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/sql_state.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/sslopt-case.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/sslopt-longopts.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/sslopt-vars.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/include/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/include/typelib.h -------------------------------------------------------------------------------- /ThirdParty/MySQL/lib/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/lib/libmysql.dll -------------------------------------------------------------------------------- /ThirdParty/MySQL/lib/libmysql.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/MySQL/lib/libmysql.lib -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/bin/mysqlpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/bin/mysqlpp.dll -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/bin/mysqlpp_d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/bin/mysqlpp_d.dll -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/autoflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/autoflag.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/beemutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/beemutex.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/cmdline.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/common.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/comparable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/comparable.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/connection.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/cpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/cpool.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/datetime.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/dbdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/dbdriver.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/exceptions.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/field.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/field_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/field_names.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/field_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/field_types.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/insertpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/insertpolicy.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/manip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/manip.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/myset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/myset.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/mysql++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/mysql++.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/mysql++.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/mysql++.h.in -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/mystring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/mystring.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/noexceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/noexceptions.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/null.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/options.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/qparms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/qparms.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/query.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/querydef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/querydef.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/refcounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/refcounted.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/result.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/row.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/scopedconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/scopedconnection.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/sql_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/sql_buffer.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/sql_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/sql_types.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/sqlstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/sqlstream.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/ssqls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/ssqls.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/ssqls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/ssqls2.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/stadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/stadapter.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/stream2string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/stream2string.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/tcp_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/tcp_connection.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/tiny_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/tiny_int.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/transaction.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/type_info.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/uds_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/uds_connection.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/utility.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/vallist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/vallist.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/include/wnp_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/include/wnp_connection.h -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/lib/mysqlpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/lib/mysqlpp.lib -------------------------------------------------------------------------------- /ThirdParty/Mysqlpp/lib/mysqlpp_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/Mysqlpp/lib/mysqlpp_d.lib -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/OpenSSLhelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/OpenSSLhelp.chm -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/CA.pl -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/ca-key.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/ca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/ca-req.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/cert.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/client.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/demoCA/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/demoCA/cacert.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/demoCA/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/demoCA/index.txt -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/demoCA/private/cakey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/demoCA/private/cakey.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dh1024.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dh2048.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dh4096.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dh512.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dsa-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dsa-ca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dsa-pca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dsa-pca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dsa1024.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dsa512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dsa512.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/dsap.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/pca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/pca-key.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/pca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/pca-req.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/privkey.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/req.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/rsa8192.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/rsa8192.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/s1024key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/s1024key.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/s1024req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/s1024req.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/s512-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/s512-key.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/s512-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/s512-req.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/server.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/server2.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set-g-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set-g-ca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set-m-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set-m-ca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set_b_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set_b_ca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set_c_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set_c_ca.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set_d_ct.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set_d_ct.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/set/set_root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/set/set_root.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/PEM/testCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/PEM/testCA.pem -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/bin/openssl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/bin/openssl.cfg -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/changes.txt -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/4758cca.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/4758cca.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/aep.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/aep.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/atalla.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/atalla.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/capi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/capi.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/chil.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/chil.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/cswift.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/cswift.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/gmp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/gmp.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/gost.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/gost.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/libeay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/libeay32.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/nuron.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/nuron.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/padlock.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/padlock.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/ssleay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/ssleay32.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/sureware.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/sureware.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/exp/ubsec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/exp/ubsec.exp -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/faq.txt -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/aes.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/applink.c -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/asn1.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/asn1t.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/bio.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/blowfish.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/bn.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/buffer.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/camellia.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/cast.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/cmac.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/cms.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/comp.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/conf.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/conf_api.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/crypto.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/des.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/des_old.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/dh.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/dsa.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/dso.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/dtls1.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/e_os2.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ec.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ecdh.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/engine.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/err.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/evp.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/hmac.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/idea.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/kssl.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/lhash.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/md4.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/md5.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/mdc2.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/modes.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/objects.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ocsp.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/opensslv.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/pem.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/pem2.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/pqueue.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/rand.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/rc2.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/rc4.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ripemd.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/rsa.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/safestack.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/seed.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/sha.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/srp.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/srtp.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ssl.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ssl2.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ssl23.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ssl3.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/stack.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/symhacks.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/tls1.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ts.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/txt_db.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ui.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/x509.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/include/openssl/x509v3.h -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/license.txt -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/news.txt -------------------------------------------------------------------------------- /ThirdParty/OpenSSL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/OpenSSL/readme.txt -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/ProtoBufLib.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/ProtoBufLib.rar -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/any.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/arena.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/arenastring.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/duration.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/field_mask.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/map.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/map_field.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/message.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/metadata.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/reflection.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/service.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/stubs/casts.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/text_format.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /ThirdParty/ProtoBuf/include/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foryoung365/GameServer/HEAD/ThirdParty/ProtoBuf/include/google/protobuf/wrappers.pb.h --------------------------------------------------------------------------------