├── .gitignore ├── LICENSE ├── README.md └── sptrunk ├── Clear.bat ├── Common ├── AdvanceLib │ ├── AdvanceLib_VC10.vcxproj │ ├── CommonHeader.h │ ├── Console │ │ ├── ConsoleI.cpp │ │ ├── ConsoleI.h │ │ ├── ConsoleO.cpp │ │ └── ConsoleO.h │ ├── GlobalDefine.h │ ├── Socket │ │ ├── Acceptor.cpp │ │ ├── Acceptor.h │ │ ├── Connector.cpp │ │ ├── Connector.h │ │ ├── IOPacket.cpp │ │ ├── IOPacket.h │ │ ├── MessageEncrypt.cpp │ │ ├── MessageEncrypt.h │ │ ├── NetMsg.cpp │ │ ├── NetMsg.h │ │ ├── Session.cpp │ │ ├── Session.h │ │ ├── Socket.cpp │ │ └── Socket.h │ └── Thread │ │ └── ThreadCPU.h └── Utility │ ├── ByteBuffer.h │ ├── CheckAndAssert_t.h │ ├── FunctionMap.cpp │ ├── FunctionMap.h │ ├── Global.cpp │ ├── Global.h │ ├── List.h │ ├── LogAssert.h │ ├── MemBand.h │ ├── MemoryCache.cpp │ ├── MemoryCache.h │ ├── MemoryPool.h │ ├── MemoryPoolBase.h │ ├── MemoryPoolFactory.h │ ├── Narray.h │ ├── Nstring.h │ ├── SafeMemoryPoolFactory.h │ ├── Singleton.h │ ├── SolarFileReader.cpp │ ├── SolarFileReader.h │ ├── Stackwalker.cpp │ ├── Stackwalker.h │ ├── Timer.h │ ├── UtilityCommon.h │ ├── Utility_VC10.vcxproj │ ├── WorldPacket.h │ ├── WzDataType.cpp │ ├── nhashtable.h │ ├── nlinebuffer.h │ ├── nlist.h │ ├── nmath.h │ ├── nnode.h │ ├── nstrlist.h │ └── nstrnode.h ├── Makefile ├── PushServer ├── ClientAcceptor.cpp ├── ClientAcceptor.h ├── CommonHeader.h ├── DBConnector.cpp ├── DBConnector.h ├── GlobalDefine.h ├── Main.cpp ├── MsgDefine.h ├── MsgHandler.cpp ├── MsgHandler.h ├── MsgHandler_CS.cpp ├── MsgHandler_WS.cpp ├── MsgStruct_CS.h ├── MsgStruct_WS.h ├── NetThread.cpp ├── NetThread.h ├── PushServer.cpp ├── PushServer.h ├── PushServer.vcxproj ├── ReadMe.txt ├── ServerConfig.cpp ├── ServerConfig.h ├── UserManager.cpp ├── UserManager.h ├── WebSvrConnector.cpp └── WebSvrConnector.h ├── PushServer_VC10.sln ├── _Android └── AndroidApp │ ├── .classpath │ ├── .project │ ├── bin │ ├── AppMain.class │ ├── MSG_C2S_USER_AUTH_SYN.class │ ├── MSG_S2C_SVR_READY_CMD.class │ ├── MSG_S2C_USER_AUTH_ACK.class │ ├── MsgBase.class │ └── MsgHandler.class │ └── src │ ├── AppMain.java │ ├── MsgBase.java │ └── MsgHandler.java ├── _Bin └── Server │ ├── AgentServer.ini │ ├── LoginServer.ini │ ├── Server.ini │ └── ServerOption.ini └── _Web ├── index.php ├── msgbase.php ├── msghandler.php └── netcommon.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/README.md -------------------------------------------------------------------------------- /sptrunk/Clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Clear.bat -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/AdvanceLib_VC10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/AdvanceLib_VC10.vcxproj -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/CommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/CommonHeader.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Console/ConsoleI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Console/ConsoleI.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Console/ConsoleI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Console/ConsoleI.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Console/ConsoleO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Console/ConsoleO.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Console/ConsoleO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Console/ConsoleO.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/GlobalDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/GlobalDefine.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Acceptor.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Acceptor.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Connector.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Connector.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/IOPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/IOPacket.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/IOPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/IOPacket.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/MessageEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/MessageEncrypt.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/MessageEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/MessageEncrypt.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/NetMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/NetMsg.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/NetMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/NetMsg.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Session.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Session.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Socket.cpp -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Socket/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Socket/Socket.h -------------------------------------------------------------------------------- /sptrunk/Common/AdvanceLib/Thread/ThreadCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/AdvanceLib/Thread/ThreadCPU.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/ByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/ByteBuffer.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/CheckAndAssert_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/CheckAndAssert_t.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/FunctionMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/FunctionMap.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/FunctionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/FunctionMap.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Global.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Global.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/List.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/LogAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/LogAssert.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemBand.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemoryCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemoryCache.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemoryCache.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemoryPool.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemoryPoolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemoryPoolBase.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/MemoryPoolFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/MemoryPoolFactory.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Narray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Narray.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Nstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Nstring.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/SafeMemoryPoolFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/SafeMemoryPoolFactory.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Singleton.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/SolarFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/SolarFileReader.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/SolarFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/SolarFileReader.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Stackwalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Stackwalker.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Stackwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Stackwalker.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Timer.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/UtilityCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/UtilityCommon.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/Utility_VC10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/Utility_VC10.vcxproj -------------------------------------------------------------------------------- /sptrunk/Common/Utility/WorldPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/WorldPacket.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/WzDataType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/WzDataType.cpp -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nhashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nhashtable.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nlinebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nlinebuffer.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nlist.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nmath.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nnode.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nstrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nstrlist.h -------------------------------------------------------------------------------- /sptrunk/Common/Utility/nstrnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Common/Utility/nstrnode.h -------------------------------------------------------------------------------- /sptrunk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/Makefile -------------------------------------------------------------------------------- /sptrunk/PushServer/ClientAcceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/ClientAcceptor.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/ClientAcceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/ClientAcceptor.h -------------------------------------------------------------------------------- /sptrunk/PushServer/CommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/CommonHeader.h -------------------------------------------------------------------------------- /sptrunk/PushServer/DBConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/DBConnector.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/DBConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/DBConnector.h -------------------------------------------------------------------------------- /sptrunk/PushServer/GlobalDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/GlobalDefine.h -------------------------------------------------------------------------------- /sptrunk/PushServer/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/Main.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgDefine.h -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgHandler.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgHandler.h -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgHandler_CS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgHandler_CS.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgHandler_WS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgHandler_WS.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgStruct_CS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgStruct_CS.h -------------------------------------------------------------------------------- /sptrunk/PushServer/MsgStruct_WS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/MsgStruct_WS.h -------------------------------------------------------------------------------- /sptrunk/PushServer/NetThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/NetThread.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/NetThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/NetThread.h -------------------------------------------------------------------------------- /sptrunk/PushServer/PushServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/PushServer.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/PushServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/PushServer.h -------------------------------------------------------------------------------- /sptrunk/PushServer/PushServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/PushServer.vcxproj -------------------------------------------------------------------------------- /sptrunk/PushServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/ReadMe.txt -------------------------------------------------------------------------------- /sptrunk/PushServer/ServerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/ServerConfig.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/ServerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/ServerConfig.h -------------------------------------------------------------------------------- /sptrunk/PushServer/UserManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/UserManager.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/UserManager.h -------------------------------------------------------------------------------- /sptrunk/PushServer/WebSvrConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/WebSvrConnector.cpp -------------------------------------------------------------------------------- /sptrunk/PushServer/WebSvrConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer/WebSvrConnector.h -------------------------------------------------------------------------------- /sptrunk/PushServer_VC10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/PushServer_VC10.sln -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/.classpath -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/.project -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/AppMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/AppMain.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/MSG_C2S_USER_AUTH_SYN.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/MSG_C2S_USER_AUTH_SYN.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/MSG_S2C_SVR_READY_CMD.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/MSG_S2C_SVR_READY_CMD.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/MSG_S2C_USER_AUTH_ACK.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/MSG_S2C_USER_AUTH_ACK.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/MsgBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/MsgBase.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/bin/MsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/bin/MsgHandler.class -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/src/AppMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/src/AppMain.java -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/src/MsgBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/src/MsgBase.java -------------------------------------------------------------------------------- /sptrunk/_Android/AndroidApp/src/MsgHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Android/AndroidApp/src/MsgHandler.java -------------------------------------------------------------------------------- /sptrunk/_Bin/Server/AgentServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Bin/Server/AgentServer.ini -------------------------------------------------------------------------------- /sptrunk/_Bin/Server/LoginServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Bin/Server/LoginServer.ini -------------------------------------------------------------------------------- /sptrunk/_Bin/Server/Server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Bin/Server/Server.ini -------------------------------------------------------------------------------- /sptrunk/_Bin/Server/ServerOption.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Bin/Server/ServerOption.ini -------------------------------------------------------------------------------- /sptrunk/_Web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Web/index.php -------------------------------------------------------------------------------- /sptrunk/_Web/msgbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Web/msgbase.php -------------------------------------------------------------------------------- /sptrunk/_Web/msghandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Web/msghandler.php -------------------------------------------------------------------------------- /sptrunk/_Web/netcommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fallenbird/SunPush/HEAD/sptrunk/_Web/netcommon.php --------------------------------------------------------------------------------