├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── img ├── UE4DemoScreenshot.gif └── img_1.png ├── init.sh ├── pycharm2020.1.3 ├── .gitignore ├── .idea │ ├── .gitignore │ ├── deployment.xml │ ├── dictionaries │ │ ├── Administrator.xml │ │ └── b.xml │ ├── encodings.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── pycharm2020.1.3.iml │ ├── vcs.xml │ └── webServers.xml ├── bin │ ├── .gitignore │ ├── linux │ │ ├── etcd │ │ │ ├── etcd │ │ │ └── etcdctl │ │ └── start_etcd_cluster.sh │ └── win │ │ ├── conf │ │ ├── battle_server.json │ │ ├── battle_server.yml │ │ ├── dispatcher_service.json │ │ └── lobby_server.json │ │ ├── env_mongodb.bat │ │ ├── env_redis.bat │ │ ├── etcd │ │ ├── etcd.exe │ │ └── etcdctl.exe │ │ ├── launcher.py │ │ ├── mongodb │ │ ├── db │ │ │ └── .gitignore │ │ ├── mongod.cfg │ │ └── mongod.exe │ │ ├── redis │ │ ├── EventLog.dll │ │ ├── redis-benchmark.exe │ │ ├── redis-check-aof.exe │ │ ├── redis-check-rdb.exe │ │ ├── redis-cli.exe │ │ ├── redis-server.exe │ │ ├── redis.windows-service.conf │ │ └── redis.windows.conf │ │ ├── start_etcd_cluster.bat │ │ └── start_test.bat ├── script │ ├── .idea │ │ ├── deployment.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── script.iml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── BattleEntity.py │ ├── ConnBase.py │ ├── ConnMgr.py │ ├── LobbyEntity.py │ ├── ProxyRpcHandler.py │ ├── PuppetBindEntity.py │ ├── RpcHandler.py │ ├── RudpConn.py │ ├── RudpServer.py │ ├── ServerBase.py │ ├── TcpConn.py │ ├── TcpServer.py │ ├── battle_entity │ │ ├── Puppet.py │ │ └── __init__.py │ ├── client │ │ ├── Avatar.py │ │ ├── Puppet.py │ │ ├── RudpClient.py │ │ ├── TcpClient2.py │ │ ├── TcpRudpClient.py │ │ ├── __init__.py │ │ └── component │ │ │ ├── avatar │ │ │ ├── CompAvatarTest.py │ │ │ └── __init__.py │ │ │ └── puppet │ │ │ ├── CompDungeon.py │ │ │ ├── CompPuppetTest.py │ │ │ └── __init_.py │ ├── common │ │ ├── PuppetEntity.py │ │ ├── component │ │ │ ├── Component.py │ │ │ ├── ComponentRegister.py │ │ │ └── ComponentSupport.py │ │ ├── gv.py │ │ └── service_const.py │ ├── component │ │ ├── __init__.py │ │ ├── avatar │ │ │ ├── CompAvatarTest.py │ │ │ └── __init__.py │ │ └── puppet │ │ │ ├── CompPuppetTest.py │ │ │ ├── __init__.py │ │ │ ├── test_reload_all_const.py │ │ │ └── test_reload_const.py │ ├── core │ │ ├── EtcdSupport.py │ │ ├── __init__.py │ │ ├── common │ │ │ ├── EntityFactory.py │ │ │ ├── EntityManager.py │ │ │ ├── EntityScanner.py │ │ │ ├── IdManager.py │ │ │ ├── MsgpackSupport.py │ │ │ ├── RpcMethodArgs.py │ │ │ ├── RpcSupport.py │ │ │ ├── __init__.py │ │ │ ├── protocol_def.py │ │ │ ├── rudp.py │ │ │ ├── tcp_test_cli.py │ │ │ ├── tcp_test_srv.py │ │ │ ├── udp_test_cli.py │ │ │ └── udp_test_srv.py │ │ ├── mobilelog │ │ │ ├── LogManager.py │ │ │ └── __init__.py │ │ ├── tool │ │ │ ├── __init__.py │ │ │ ├── distgameutil.py │ │ │ ├── incremental_reload.py │ │ │ └── reload_impl.py │ │ └── util │ │ │ ├── DbUtil.py │ │ │ ├── EnhancedJson.py │ │ │ ├── TimerHub.py │ │ │ ├── UtilApi.py │ │ │ ├── __init__.py │ │ │ └── performance │ │ │ ├── __init__.py │ │ │ ├── battleserver_load.py │ │ │ └── cpu_load_handler.py │ ├── dungeon │ │ ├── Dungeon.py │ │ ├── DungeonManager.py │ │ └── __init__.py │ ├── lobby_entity │ │ ├── Avatar.py │ │ └── __init__.py │ ├── requirements.txt │ ├── sanic_jwt_extended │ │ ├── __init__.py │ │ ├── blacklist.py │ │ ├── blacklist.pyi │ │ ├── config.py │ │ ├── config.pyi │ │ ├── decorators.py │ │ ├── decorators.pyi │ │ ├── exceptions.py │ │ ├── handler.py │ │ ├── handler.pyi │ │ ├── jwt_manager.py │ │ ├── jwt_manager.pyi │ │ ├── redis.py │ │ ├── tokens.py │ │ └── tokens.pyi │ ├── server_entity │ │ ├── LoadCollector.py │ │ ├── LoadReporter.py │ │ ├── ServerEntity.py │ │ ├── __init__.py │ │ └── center_stub │ │ │ ├── BattleAllocatorCenter.py │ │ │ ├── BattleAllocatorStub.py │ │ │ ├── Center.py │ │ │ ├── Stub.py │ │ │ └── __init__.py │ ├── server_instance │ │ ├── BattleServer.py │ │ ├── DispatcherService.py │ │ ├── GameManager.py │ │ ├── GameManagerClient.py │ │ ├── LobbyGate.py │ │ ├── LobbyServer.py │ │ └── __init__.py │ └── util │ │ ├── SingletonEntityManager.py │ │ └── __init__.py └── todo_list.md ├── rs └── net │ ├── ConnectionBase.h │ ├── ServerBase.h │ ├── TcpConnection.h │ ├── TcpServer.h │ └── noncopyable.h └── vs2017 └── realtime_server ├── .vs └── realtime_server │ └── v15 │ ├── .suo │ ├── Browse.VC.db │ └── ipch │ └── AutoPCH │ ├── 1dadbb471d32503d │ └── SERVERBASE.ipch │ └── 51e1986e5e833cde │ └── CONNECTIONBASE.ipch ├── realtime_server.sln └── realtime_server ├── realtime_server.vcxproj ├── realtime_server.vcxproj.filters └── realtime_server.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/README.md -------------------------------------------------------------------------------- /img/UE4DemoScreenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/img/UE4DemoScreenshot.gif -------------------------------------------------------------------------------- /img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/img/img_1.png -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/init.sh -------------------------------------------------------------------------------- /pycharm2020.1.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.gitignore -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/.gitignore -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/deployment.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/dictionaries/Administrator.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/dictionaries/b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/dictionaries/b.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/encodings.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/misc.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/modules.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/pycharm2020.1.3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/pycharm2020.1.3.iml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/vcs.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/.idea/webServers.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.etcd -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/linux/etcd/etcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/linux/etcd/etcd -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/linux/etcd/etcdctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/linux/etcd/etcdctl -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/linux/start_etcd_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/linux/start_etcd_cluster.sh -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/conf/battle_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/conf/battle_server.json -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/conf/battle_server.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/conf/dispatcher_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/conf/dispatcher_service.json -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/conf/lobby_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/conf/lobby_server.json -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/env_mongodb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/env_mongodb.bat -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/env_redis.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/env_redis.bat -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/etcd/etcd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/etcd/etcd.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/etcd/etcdctl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/etcd/etcdctl.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/launcher.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/mongodb/db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/mongodb/db/.gitignore -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/mongodb/mongod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/mongodb/mongod.cfg -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/mongodb/mongod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/mongodb/mongod.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/EventLog.dll -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis-benchmark.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis-benchmark.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis-check-aof.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis-check-aof.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis-check-rdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis-check-rdb.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis-cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis-cli.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis-server.exe -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis.windows-service.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis.windows-service.conf -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/redis/redis.windows.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/redis/redis.windows.conf -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/start_etcd_cluster.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/start_etcd_cluster.bat -------------------------------------------------------------------------------- /pycharm2020.1.3/bin/win/start_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/bin/win/start_test.bat -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/deployment.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/misc.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/modules.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/script.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/script.iml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/vcs.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/.idea/workspace.xml -------------------------------------------------------------------------------- /pycharm2020.1.3/script/BattleEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/BattleEntity.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/ConnBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/ConnBase.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/ConnMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/ConnMgr.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/LobbyEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/LobbyEntity.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/ProxyRpcHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/ProxyRpcHandler.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/PuppetBindEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/PuppetBindEntity.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/RpcHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/RpcHandler.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/RudpConn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/RudpConn.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/RudpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/RudpServer.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/ServerBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/ServerBase.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/TcpConn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/TcpConn.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/TcpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/TcpServer.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/battle_entity/Puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/battle_entity/Puppet.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/battle_entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/Avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/Avatar.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/Puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/Puppet.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/RudpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/RudpClient.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/TcpClient2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/TcpClient2.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/TcpRudpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/TcpRudpClient.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/component/avatar/CompAvatarTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/component/avatar/CompAvatarTest.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/component/avatar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/component/puppet/CompDungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/component/puppet/CompDungeon.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/component/puppet/CompPuppetTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/client/component/puppet/CompPuppetTest.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/client/component/puppet/__init_.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/PuppetEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/PuppetEntity.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/component/Component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/component/Component.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/component/ComponentRegister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/component/ComponentRegister.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/component/ComponentSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/component/ComponentSupport.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/gv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/gv.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/common/service_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/common/service_const.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/avatar/CompAvatarTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/component/avatar/CompAvatarTest.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/avatar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/puppet/CompPuppetTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/component/puppet/CompPuppetTest.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/puppet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/puppet/test_reload_all_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/component/puppet/test_reload_all_const.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/component/puppet/test_reload_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/component/puppet/test_reload_const.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/EtcdSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/EtcdSupport.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/EntityFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/EntityFactory.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/EntityManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/EntityManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/EntityScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/EntityScanner.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/IdManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/IdManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/MsgpackSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/MsgpackSupport.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/RpcMethodArgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/RpcMethodArgs.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/RpcSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/RpcSupport.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/protocol_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/protocol_def.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/rudp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/rudp.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/tcp_test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/tcp_test_cli.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/tcp_test_srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/tcp_test_srv.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/udp_test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/udp_test_cli.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/common/udp_test_srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/common/udp_test_srv.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/mobilelog/LogManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/mobilelog/LogManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/mobilelog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/tool/distgameutil.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/tool/incremental_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/tool/incremental_reload.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/tool/reload_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/tool/reload_impl.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/DbUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/DbUtil.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/EnhancedJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/EnhancedJson.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/TimerHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/TimerHub.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/UtilApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/UtilApi.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/performance/battleserver_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/performance/battleserver_load.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/core/util/performance/cpu_load_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/core/util/performance/cpu_load_handler.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/dungeon/Dungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/dungeon/Dungeon.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/dungeon/DungeonManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/dungeon/DungeonManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/dungeon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/lobby_entity/Avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/lobby_entity/Avatar.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/lobby_entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/requirements.txt -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/__init__.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/blacklist.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/blacklist.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/blacklist.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/config.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/config.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/config.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/decorators.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/decorators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/decorators.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/exceptions.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/handler.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/handler.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/handler.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/jwt_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/jwt_manager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/jwt_manager.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/jwt_manager.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/redis.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/tokens.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/sanic_jwt_extended/tokens.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/sanic_jwt_extended/tokens.pyi -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/LoadCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/LoadCollector.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/LoadReporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/LoadReporter.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/ServerEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/ServerEntity.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/center_stub/BattleAllocatorCenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/center_stub/BattleAllocatorCenter.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/center_stub/BattleAllocatorStub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/center_stub/BattleAllocatorStub.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/center_stub/Center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/center_stub/Center.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/center_stub/Stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_entity/center_stub/Stub.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_entity/center_stub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/BattleServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_instance/BattleServer.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/DispatcherService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_instance/DispatcherService.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/GameManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_instance/GameManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/GameManagerClient.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/LobbyGate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_instance/LobbyGate.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/LobbyServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/server_instance/LobbyServer.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/server_instance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/script/util/SingletonEntityManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/script/util/SingletonEntityManager.py -------------------------------------------------------------------------------- /pycharm2020.1.3/script/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycharm2020.1.3/todo_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/pycharm2020.1.3/todo_list.md -------------------------------------------------------------------------------- /rs/net/ConnectionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/rs/net/ConnectionBase.h -------------------------------------------------------------------------------- /rs/net/ServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/rs/net/ServerBase.h -------------------------------------------------------------------------------- /rs/net/TcpConnection.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /rs/net/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/rs/net/TcpServer.h -------------------------------------------------------------------------------- /rs/net/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/rs/net/noncopyable.h -------------------------------------------------------------------------------- /vs2017/realtime_server/.vs/realtime_server/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/.vs/realtime_server/v15/.suo -------------------------------------------------------------------------------- /vs2017/realtime_server/.vs/realtime_server/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/.vs/realtime_server/v15/Browse.VC.db -------------------------------------------------------------------------------- /vs2017/realtime_server/.vs/realtime_server/v15/ipch/AutoPCH/1dadbb471d32503d/SERVERBASE.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/.vs/realtime_server/v15/ipch/AutoPCH/1dadbb471d32503d/SERVERBASE.ipch -------------------------------------------------------------------------------- /vs2017/realtime_server/.vs/realtime_server/v15/ipch/AutoPCH/51e1986e5e833cde/CONNECTIONBASE.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/.vs/realtime_server/v15/ipch/AutoPCH/51e1986e5e833cde/CONNECTIONBASE.ipch -------------------------------------------------------------------------------- /vs2017/realtime_server/realtime_server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/realtime_server.sln -------------------------------------------------------------------------------- /vs2017/realtime_server/realtime_server/realtime_server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/realtime_server/realtime_server.vcxproj -------------------------------------------------------------------------------- /vs2017/realtime_server/realtime_server/realtime_server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/realtime_server/realtime_server.vcxproj.filters -------------------------------------------------------------------------------- /vs2017/realtime_server/realtime_server/realtime_server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no5ix/realtime-server/HEAD/vs2017/realtime_server/realtime_server/realtime_server.vcxproj.user --------------------------------------------------------------------------------