├── LICENSE ├── README.md ├── bin ├── config │ ├── db.json │ └── server.json ├── gameserver.exe ├── gameserver.lnk ├── mongodb │ └── data │ │ ├── db │ │ ├── auth.0 │ │ ├── auth.ns │ │ ├── game.0 │ │ ├── game.ns │ │ ├── local.0 │ │ ├── local.ns │ │ ├── mongod.lock │ │ ├── test.0 │ │ └── test.ns │ │ └── log │ │ ├── mongodb.log │ │ ├── mongodb.log.2014-08-05T02-33-11 │ │ ├── mongodb.log.2014-08-05T02-34-46 │ │ ├── mongodb.log.2014-08-05T09-58-40 │ │ ├── mongodb.log.2014-08-05T12-58-18 │ │ ├── mongodb.log.2014-08-06T02-03-26 │ │ ├── mongodb.log.2014-08-06T09-48-43 │ │ ├── mongodb.log.2014-08-06T10-14-49 │ │ ├── mongodb.log.2014-08-07T01-49-38 │ │ ├── mongodb.log.2014-08-07T03-06-53 │ │ ├── mongodb.log.2014-08-07T10-21-28 │ │ ├── mongodb.log.2014-08-08T01-37-40 │ │ ├── mongodb.log.2014-08-08T08-54-46 │ │ ├── mongodb.log.2014-08-08T08-54-59 │ │ ├── mongodb.log.2014-08-11T02-59-54 │ │ ├── mongodb.log.2014-08-11T03-01-30 │ │ ├── mongodb.log.2014-08-11T09-17-37 │ │ ├── mongodb.log.2014-08-12T01-07-51 │ │ └── mongodb.log.2014-08-13T02-01-15 ├── run.bat ├── stop.bat └── tools │ └── protobuf │ ├── error.proto │ ├── frontend.proto │ ├── gate.proto │ ├── msgcmd.proto │ ├── proto_tool.bat │ └── result.proto ├── doc ├── readme │ └── 安装mongodb为windows服务.txt └── 命令 │ └── goprotobuf.txt ├── pkg └── windows_386 │ ├── common.a │ ├── config │ ├── db_config.a │ ├── message_config.a │ └── server_config.a │ ├── framework │ ├── database.a │ ├── network.a │ └── server.a │ ├── gamelogic │ └── rpc.a │ ├── gameserver │ ├── auth │ │ └── app.a │ ├── connector │ │ └── app.a │ ├── database │ │ └── app.a │ ├── game │ │ └── app.a │ ├── gate │ │ └── app.a │ ├── lobby │ │ └── app.a │ ├── master │ │ └── app.a │ └── society │ │ └── app.a │ └── msg_proto.a └── src ├── common ├── common.go ├── json.go ├── node.go ├── pool.go ├── safemap.go ├── safequeue.go ├── safestack.go └── timer.go ├── config ├── db_config │ └── dbconfig.go ├── message_config │ ├── messagecallback.go │ └── messagelist.go └── server_config │ └── serverconfig.go ├── framework ├── database │ └── db.go ├── network │ ├── connchannel.go │ ├── connclient.go │ ├── connection.go │ ├── irpchandler.go │ ├── message.go │ ├── proxymanager.go │ └── session.go └── server │ ├── backend.go │ ├── frontend.go │ ├── iserver.go │ ├── rpcservice.go │ └── server.go ├── gamelogic └── rpc │ └── rpcarg.go ├── gameserver ├── auth │ └── app │ │ ├── auth_app.go │ │ └── auth_rpc.go ├── bin.lnk ├── connector │ └── app │ │ ├── connector_app.go │ │ ├── connector_rpc.go │ │ ├── session_check.go │ │ └── token_manager.go ├── database │ └── app │ │ ├── database_app.go │ │ └── database_rpc.go ├── game │ └── app │ │ ├── game_app.go │ │ └── game_rpc.go ├── gameserver.exe ├── gameserver.go ├── gate │ └── app │ │ ├── gate_app.go │ │ ├── gate_handle.go │ │ └── gate_rpc.go ├── lobby │ └── app │ │ ├── lobby_app.go │ │ └── lobby_rpc.go ├── master │ └── app │ │ ├── master_app.go │ │ └── master_rpc.go └── society │ └── app │ ├── society_app.go │ └── society_rpc.go └── msg_proto ├── error.pb.go ├── frontend.pb.go ├── gate.pb.go ├── msgcmd.pb.go └── result.pb.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/README.md -------------------------------------------------------------------------------- /bin/config/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/config/db.json -------------------------------------------------------------------------------- /bin/config/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/config/server.json -------------------------------------------------------------------------------- /bin/gameserver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/gameserver.exe -------------------------------------------------------------------------------- /bin/gameserver.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/gameserver.lnk -------------------------------------------------------------------------------- /bin/mongodb/data/db/auth.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/auth.0 -------------------------------------------------------------------------------- /bin/mongodb/data/db/auth.ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/auth.ns -------------------------------------------------------------------------------- /bin/mongodb/data/db/game.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/game.0 -------------------------------------------------------------------------------- /bin/mongodb/data/db/game.ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/game.ns -------------------------------------------------------------------------------- /bin/mongodb/data/db/local.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/local.0 -------------------------------------------------------------------------------- /bin/mongodb/data/db/local.ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/local.ns -------------------------------------------------------------------------------- /bin/mongodb/data/db/mongod.lock: -------------------------------------------------------------------------------- 1 | 2232 2 | -------------------------------------------------------------------------------- /bin/mongodb/data/db/test.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/test.0 -------------------------------------------------------------------------------- /bin/mongodb/data/db/test.ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/db/test.ns -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-05T02-33-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-05T02-33-11 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-05T02-34-46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-05T02-34-46 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-05T09-58-40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-05T09-58-40 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-05T12-58-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-05T12-58-18 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-06T02-03-26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-06T02-03-26 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-06T09-48-43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-06T09-48-43 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-06T10-14-49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-06T10-14-49 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-07T01-49-38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-07T01-49-38 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-07T03-06-53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-07T03-06-53 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-07T10-21-28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-07T10-21-28 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-08T01-37-40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-08T01-37-40 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-08T08-54-46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-08T08-54-46 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-08T08-54-59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-08T08-54-59 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-11T02-59-54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-11T02-59-54 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-11T03-01-30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-11T03-01-30 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-11T09-17-37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-11T09-17-37 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-12T01-07-51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-12T01-07-51 -------------------------------------------------------------------------------- /bin/mongodb/data/log/mongodb.log.2014-08-13T02-01-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/mongodb/data/log/mongodb.log.2014-08-13T02-01-15 -------------------------------------------------------------------------------- /bin/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/run.bat -------------------------------------------------------------------------------- /bin/stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/stop.bat -------------------------------------------------------------------------------- /bin/tools/protobuf/error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/error.proto -------------------------------------------------------------------------------- /bin/tools/protobuf/frontend.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/frontend.proto -------------------------------------------------------------------------------- /bin/tools/protobuf/gate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/gate.proto -------------------------------------------------------------------------------- /bin/tools/protobuf/msgcmd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/msgcmd.proto -------------------------------------------------------------------------------- /bin/tools/protobuf/proto_tool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/proto_tool.bat -------------------------------------------------------------------------------- /bin/tools/protobuf/result.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/bin/tools/protobuf/result.proto -------------------------------------------------------------------------------- /doc/readme/安装mongodb为windows服务.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/doc/readme/安装mongodb为windows服务.txt -------------------------------------------------------------------------------- /doc/命令/goprotobuf.txt: -------------------------------------------------------------------------------- 1 | protoc --go_out=. *.proto -------------------------------------------------------------------------------- /pkg/windows_386/common.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/common.a -------------------------------------------------------------------------------- /pkg/windows_386/config/db_config.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/config/db_config.a -------------------------------------------------------------------------------- /pkg/windows_386/config/message_config.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/config/message_config.a -------------------------------------------------------------------------------- /pkg/windows_386/config/server_config.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/config/server_config.a -------------------------------------------------------------------------------- /pkg/windows_386/framework/database.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/framework/database.a -------------------------------------------------------------------------------- /pkg/windows_386/framework/network.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/framework/network.a -------------------------------------------------------------------------------- /pkg/windows_386/framework/server.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/framework/server.a -------------------------------------------------------------------------------- /pkg/windows_386/gamelogic/rpc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gamelogic/rpc.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/auth/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/auth/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/connector/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/connector/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/database/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/database/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/game/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/game/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/gate/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/gate/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/lobby/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/lobby/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/master/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/master/app.a -------------------------------------------------------------------------------- /pkg/windows_386/gameserver/society/app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/gameserver/society/app.a -------------------------------------------------------------------------------- /pkg/windows_386/msg_proto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/pkg/windows_386/msg_proto.a -------------------------------------------------------------------------------- /src/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/common.go -------------------------------------------------------------------------------- /src/common/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/json.go -------------------------------------------------------------------------------- /src/common/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/node.go -------------------------------------------------------------------------------- /src/common/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/pool.go -------------------------------------------------------------------------------- /src/common/safemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/safemap.go -------------------------------------------------------------------------------- /src/common/safequeue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/safequeue.go -------------------------------------------------------------------------------- /src/common/safestack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/safestack.go -------------------------------------------------------------------------------- /src/common/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/common/timer.go -------------------------------------------------------------------------------- /src/config/db_config/dbconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/config/db_config/dbconfig.go -------------------------------------------------------------------------------- /src/config/message_config/messagecallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/config/message_config/messagecallback.go -------------------------------------------------------------------------------- /src/config/message_config/messagelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/config/message_config/messagelist.go -------------------------------------------------------------------------------- /src/config/server_config/serverconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/config/server_config/serverconfig.go -------------------------------------------------------------------------------- /src/framework/database/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/database/db.go -------------------------------------------------------------------------------- /src/framework/network/connchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/connchannel.go -------------------------------------------------------------------------------- /src/framework/network/connclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/connclient.go -------------------------------------------------------------------------------- /src/framework/network/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/connection.go -------------------------------------------------------------------------------- /src/framework/network/irpchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/irpchandler.go -------------------------------------------------------------------------------- /src/framework/network/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/message.go -------------------------------------------------------------------------------- /src/framework/network/proxymanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/proxymanager.go -------------------------------------------------------------------------------- /src/framework/network/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/network/session.go -------------------------------------------------------------------------------- /src/framework/server/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/server/backend.go -------------------------------------------------------------------------------- /src/framework/server/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/server/frontend.go -------------------------------------------------------------------------------- /src/framework/server/iserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/server/iserver.go -------------------------------------------------------------------------------- /src/framework/server/rpcservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/server/rpcservice.go -------------------------------------------------------------------------------- /src/framework/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/framework/server/server.go -------------------------------------------------------------------------------- /src/gamelogic/rpc/rpcarg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gamelogic/rpc/rpcarg.go -------------------------------------------------------------------------------- /src/gameserver/auth/app/auth_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/auth/app/auth_app.go -------------------------------------------------------------------------------- /src/gameserver/auth/app/auth_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/auth/app/auth_rpc.go -------------------------------------------------------------------------------- /src/gameserver/bin.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/bin.lnk -------------------------------------------------------------------------------- /src/gameserver/connector/app/connector_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/connector/app/connector_app.go -------------------------------------------------------------------------------- /src/gameserver/connector/app/connector_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/connector/app/connector_rpc.go -------------------------------------------------------------------------------- /src/gameserver/connector/app/session_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/connector/app/session_check.go -------------------------------------------------------------------------------- /src/gameserver/connector/app/token_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/connector/app/token_manager.go -------------------------------------------------------------------------------- /src/gameserver/database/app/database_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/database/app/database_app.go -------------------------------------------------------------------------------- /src/gameserver/database/app/database_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/database/app/database_rpc.go -------------------------------------------------------------------------------- /src/gameserver/game/app/game_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/game/app/game_app.go -------------------------------------------------------------------------------- /src/gameserver/game/app/game_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/game/app/game_rpc.go -------------------------------------------------------------------------------- /src/gameserver/gameserver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/gameserver.exe -------------------------------------------------------------------------------- /src/gameserver/gameserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/gameserver.go -------------------------------------------------------------------------------- /src/gameserver/gate/app/gate_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/gate/app/gate_app.go -------------------------------------------------------------------------------- /src/gameserver/gate/app/gate_handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/gate/app/gate_handle.go -------------------------------------------------------------------------------- /src/gameserver/gate/app/gate_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/gate/app/gate_rpc.go -------------------------------------------------------------------------------- /src/gameserver/lobby/app/lobby_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/lobby/app/lobby_app.go -------------------------------------------------------------------------------- /src/gameserver/lobby/app/lobby_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/lobby/app/lobby_rpc.go -------------------------------------------------------------------------------- /src/gameserver/master/app/master_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/master/app/master_app.go -------------------------------------------------------------------------------- /src/gameserver/master/app/master_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/master/app/master_rpc.go -------------------------------------------------------------------------------- /src/gameserver/society/app/society_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/society/app/society_app.go -------------------------------------------------------------------------------- /src/gameserver/society/app/society_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/gameserver/society/app/society_rpc.go -------------------------------------------------------------------------------- /src/msg_proto/error.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/msg_proto/error.pb.go -------------------------------------------------------------------------------- /src/msg_proto/frontend.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/msg_proto/frontend.pb.go -------------------------------------------------------------------------------- /src/msg_proto/gate.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/msg_proto/gate.pb.go -------------------------------------------------------------------------------- /src/msg_proto/msgcmd.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/msg_proto/msgcmd.pb.go -------------------------------------------------------------------------------- /src/msg_proto/result.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtd138/LiveServer/HEAD/src/msg_proto/result.pb.go --------------------------------------------------------------------------------