├── .DS_Store ├── .gitignore ├── AdminTool ├── .DS_Store ├── .deps │ ├── AdminTool-AdminTool.Po │ ├── AdminTool-ByteCode.Po │ ├── AdminTool-ByteCodeScript.Po │ ├── AdminTool-Chain.Po │ ├── AdminTool-Hashtable.Po │ ├── AdminTool-Heap.Po │ ├── AdminTool-ObjectPool.Po │ ├── AdminTool-RuntimeBuilderData.Po │ ├── AdminTool-ScriptThread.Po │ ├── AdminTool-SlkAction.Po │ ├── AdminTool-SlkError.Po │ ├── AdminTool-SlkLog.Po │ ├── AdminTool-SlkParse.Po │ ├── AdminTool-SlkString.Po │ ├── AdminTool-SlkToken.Po │ ├── AdminTool-SourceCodeScript.Po │ ├── AdminTool-StringFormat.Po │ ├── AdminTool-Thread.Po │ ├── AdminTool-acceptor.Po │ ├── AdminTool-base64.Po │ ├── AdminTool-calc.Po │ ├── AdminTool-connector.Po │ ├── AdminTool-exception.Po │ ├── AdminTool-minilzo.Po │ ├── AdminTool-netioservice.Po │ ├── AdminTool-stdafx.Po │ ├── AdminTool-tcp_session.Po │ ├── AdminTool-tinystr.Po │ ├── AdminTool-tinyxml.Po │ ├── AdminTool-tinyxmlerror.Po │ ├── AdminTool-tinyxmlparser.Po │ └── AdminTool-util.Po ├── AdminTool ├── AdminTool-AdminTool.o ├── AdminTool-ByteCode.o ├── AdminTool-ByteCodeScript.o ├── AdminTool-Chain.o ├── AdminTool-Hashtable.o ├── AdminTool-Heap.o ├── AdminTool-ObjectPool.o ├── AdminTool-RuntimeBuilderData.o ├── AdminTool-ScriptThread.o ├── AdminTool-SlkAction.o ├── AdminTool-SlkError.o ├── AdminTool-SlkParse.o ├── AdminTool-SlkString.o ├── AdminTool-SlkToken.o ├── AdminTool-SourceCodeScript.o ├── AdminTool-StringFormat.o ├── AdminTool-Thread.o ├── AdminTool-acceptor.o ├── AdminTool-base64.o ├── AdminTool-calc.o ├── AdminTool-connector.o ├── AdminTool-exception.o ├── AdminTool-minilzo.o ├── AdminTool-netioservice.o ├── AdminTool-stdafx.o ├── AdminTool-tcp_session.o ├── AdminTool-tinystr.o ├── AdminTool-tinyxml.o ├── AdminTool-tinyxmlerror.o ├── AdminTool-tinyxmlparser.o ├── AdminTool-util.o ├── AdminTool.cpp ├── AdminTool.sln ├── AdminTool.vcxproj ├── AdminTool.vcxproj.filters ├── Common │ ├── .DS_Store │ └── GmScript │ │ ├── ScriptThread.cpp │ │ ├── ScriptThread.h │ │ └── Stream.h ├── Compress │ ├── lzoconf.h │ ├── lzodefs.h │ ├── minilzo.c │ └── minilzo.h ├── Makefile ├── Makefile.am ├── Makefile.common.in ├── Makefile.gen ├── Makefile.in ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── output.2 │ ├── output.3 │ ├── requests │ ├── traces.0 │ ├── traces.1 │ ├── traces.2 │ └── traces.3 ├── autoscan.log ├── compile ├── compile_admintool_linux ├── compile_admintool_mac ├── config.h ├── config.h.in ├── config.h.in~ ├── config.log ├── config.status ├── configure ├── configure.ac ├── configure.scan ├── depcomp ├── install-sh ├── missing ├── stamp-h1 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CSharpCenterClient ├── CSharpCenterClient.csproj ├── Main.cs └── Properties │ └── AssemblyInfo.cs ├── CSharpClientTest ├── App.config ├── CSharpClientTest.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── CenterClientLibrary ├── .deps │ ├── libCenterClientLibrary_la-ByteCode.Plo │ ├── libCenterClientLibrary_la-ByteCodeScript.Plo │ ├── libCenterClientLibrary_la-Chain.Plo │ ├── libCenterClientLibrary_la-Hashtable.Plo │ ├── libCenterClientLibrary_la-Heap.Plo │ ├── libCenterClientLibrary_la-MaintenanceScript.Plo │ ├── libCenterClientLibrary_la-ObjectPool.Plo │ ├── libCenterClientLibrary_la-RuntimeBuilderData.Plo │ ├── libCenterClientLibrary_la-SessionManager.Plo │ ├── libCenterClientLibrary_la-SlkAction.Plo │ ├── libCenterClientLibrary_la-SlkError.Plo │ ├── libCenterClientLibrary_la-SlkParse.Plo │ ├── libCenterClientLibrary_la-SlkString.Plo │ ├── libCenterClientLibrary_la-SlkToken.Plo │ ├── libCenterClientLibrary_la-SourceCodeScript.Plo │ ├── libCenterClientLibrary_la-StringFormat.Plo │ ├── libCenterClientLibrary_la-Thread.Plo │ ├── libCenterClientLibrary_la-acceptor.Plo │ ├── libCenterClientLibrary_la-base64.Plo │ ├── libCenterClientLibrary_la-calc.Plo │ ├── libCenterClientLibrary_la-connector.Plo │ ├── libCenterClientLibrary_la-exception.Plo │ ├── libCenterClientLibrary_la-main.Plo │ ├── libCenterClientLibrary_la-netioservice.Plo │ ├── libCenterClientLibrary_la-tcp_session.Plo │ ├── libCenterClientLibrary_la-tinystr.Plo │ ├── libCenterClientLibrary_la-tinyxml.Plo │ ├── libCenterClientLibrary_la-tinyxmlerror.Plo │ ├── libCenterClientLibrary_la-tinyxmlparser.Plo │ └── libCenterClientLibrary_la-util.Plo ├── .libs │ ├── libCenterClientLibrary.0.dylib │ ├── libCenterClientLibrary.a │ ├── libCenterClientLibrary.dylib │ ├── libCenterClientLibrary.la │ ├── libCenterClientLibrary.lai │ ├── libCenterClientLibrary_la-ByteCode.o │ ├── libCenterClientLibrary_la-ByteCodeScript.o │ ├── libCenterClientLibrary_la-Chain.o │ ├── libCenterClientLibrary_la-Hashtable.o │ ├── libCenterClientLibrary_la-Heap.o │ ├── libCenterClientLibrary_la-MaintenanceScript.o │ ├── libCenterClientLibrary_la-ObjectPool.o │ ├── libCenterClientLibrary_la-RuntimeBuilderData.o │ ├── libCenterClientLibrary_la-SessionManager.o │ ├── libCenterClientLibrary_la-SlkAction.o │ ├── libCenterClientLibrary_la-SlkError.o │ ├── libCenterClientLibrary_la-SlkParse.o │ ├── libCenterClientLibrary_la-SlkString.o │ ├── libCenterClientLibrary_la-SlkToken.o │ ├── libCenterClientLibrary_la-SourceCodeScript.o │ ├── libCenterClientLibrary_la-StringFormat.o │ ├── libCenterClientLibrary_la-Thread.o │ ├── libCenterClientLibrary_la-acceptor.o │ ├── libCenterClientLibrary_la-base64.o │ ├── libCenterClientLibrary_la-calc.o │ ├── libCenterClientLibrary_la-connector.o │ ├── libCenterClientLibrary_la-exception.o │ ├── libCenterClientLibrary_la-main.o │ ├── libCenterClientLibrary_la-netioservice.o │ ├── libCenterClientLibrary_la-tcp_session.o │ ├── libCenterClientLibrary_la-tinystr.o │ ├── libCenterClientLibrary_la-tinyxml.o │ ├── libCenterClientLibrary_la-tinyxmlerror.o │ ├── libCenterClientLibrary_la-tinyxmlparser.o │ └── libCenterClientLibrary_la-util.o ├── CenterClient.h ├── CenterClientLibrary.vcxproj ├── CenterClientLibrary.vcxproj.filters ├── Communication │ ├── SessionManager.cpp │ └── SessionManager.h ├── DllExport.def ├── Makefile ├── Makefile.am ├── Makefile.common.in ├── Makefile.gen ├── Makefile.in ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── output.2 │ ├── output.3 │ ├── output.4 │ ├── output.5 │ ├── requests │ ├── traces.0 │ ├── traces.1 │ ├── traces.2 │ ├── traces.3 │ ├── traces.4 │ └── traces.5 ├── autoscan.log ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── configure.scan ├── depcomp ├── install-sh ├── libCenterClientLibrary.la ├── libCenterClientLibrary_la-ByteCode.lo ├── libCenterClientLibrary_la-ByteCode.o ├── libCenterClientLibrary_la-ByteCodeScript.lo ├── libCenterClientLibrary_la-ByteCodeScript.o ├── libCenterClientLibrary_la-Chain.lo ├── libCenterClientLibrary_la-Chain.o ├── libCenterClientLibrary_la-Hashtable.lo ├── libCenterClientLibrary_la-Hashtable.o ├── libCenterClientLibrary_la-Heap.lo ├── libCenterClientLibrary_la-Heap.o ├── libCenterClientLibrary_la-MaintenanceScript.lo ├── libCenterClientLibrary_la-MaintenanceScript.o ├── libCenterClientLibrary_la-ObjectPool.lo ├── libCenterClientLibrary_la-ObjectPool.o ├── libCenterClientLibrary_la-RuntimeBuilderData.lo ├── libCenterClientLibrary_la-RuntimeBuilderData.o ├── libCenterClientLibrary_la-SessionManager.lo ├── libCenterClientLibrary_la-SessionManager.o ├── libCenterClientLibrary_la-SlkAction.lo ├── libCenterClientLibrary_la-SlkAction.o ├── libCenterClientLibrary_la-SlkError.lo ├── libCenterClientLibrary_la-SlkError.o ├── libCenterClientLibrary_la-SlkParse.lo ├── libCenterClientLibrary_la-SlkParse.o ├── libCenterClientLibrary_la-SlkString.lo ├── libCenterClientLibrary_la-SlkString.o ├── libCenterClientLibrary_la-SlkToken.lo ├── libCenterClientLibrary_la-SlkToken.o ├── libCenterClientLibrary_la-SourceCodeScript.lo ├── libCenterClientLibrary_la-SourceCodeScript.o ├── libCenterClientLibrary_la-StringFormat.lo ├── libCenterClientLibrary_la-StringFormat.o ├── libCenterClientLibrary_la-Thread.lo ├── libCenterClientLibrary_la-Thread.o ├── libCenterClientLibrary_la-acceptor.lo ├── libCenterClientLibrary_la-acceptor.o ├── libCenterClientLibrary_la-base64.lo ├── libCenterClientLibrary_la-base64.o ├── libCenterClientLibrary_la-calc.lo ├── libCenterClientLibrary_la-calc.o ├── libCenterClientLibrary_la-connector.lo ├── libCenterClientLibrary_la-connector.o ├── libCenterClientLibrary_la-exception.lo ├── libCenterClientLibrary_la-exception.o ├── libCenterClientLibrary_la-main.lo ├── libCenterClientLibrary_la-main.o ├── libCenterClientLibrary_la-netioservice.lo ├── libCenterClientLibrary_la-netioservice.o ├── libCenterClientLibrary_la-tcp_session.lo ├── libCenterClientLibrary_la-tcp_session.o ├── libCenterClientLibrary_la-tinystr.lo ├── libCenterClientLibrary_la-tinystr.o ├── libCenterClientLibrary_la-tinyxml.lo ├── libCenterClientLibrary_la-tinyxml.o ├── libCenterClientLibrary_la-tinyxmlerror.lo ├── libCenterClientLibrary_la-tinyxmlerror.o ├── libCenterClientLibrary_la-tinyxmlparser.lo ├── libCenterClientLibrary_la-tinyxmlparser.o ├── libCenterClientLibrary_la-util.lo ├── libCenterClientLibrary_la-util.o ├── libtool ├── ltmain.sh ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── main.cpp ├── missing └── stamp-h1 ├── CenterHubLibrary ├── .deps │ ├── libCenterHubLibrary_la-ByteCode.Plo │ ├── libCenterHubLibrary_la-ByteCodeScript.Plo │ ├── libCenterHubLibrary_la-Chain.Plo │ ├── libCenterHubLibrary_la-Hashtable.Plo │ ├── libCenterHubLibrary_la-Heap.Plo │ ├── libCenterHubLibrary_la-MaintenanceScript.Plo │ ├── libCenterHubLibrary_la-ObjectPool.Plo │ ├── libCenterHubLibrary_la-RuntimeBuilderData.Plo │ ├── libCenterHubLibrary_la-SessionManager.Plo │ ├── libCenterHubLibrary_la-SlkAction.Plo │ ├── libCenterHubLibrary_la-SlkError.Plo │ ├── libCenterHubLibrary_la-SlkParse.Plo │ ├── libCenterHubLibrary_la-SlkString.Plo │ ├── libCenterHubLibrary_la-SlkToken.Plo │ ├── libCenterHubLibrary_la-SourceCodeScript.Plo │ ├── libCenterHubLibrary_la-StringFormat.Plo │ ├── libCenterHubLibrary_la-Thread.Plo │ ├── libCenterHubLibrary_la-acceptor.Plo │ ├── libCenterHubLibrary_la-base64.Plo │ ├── libCenterHubLibrary_la-calc.Plo │ ├── libCenterHubLibrary_la-connector.Plo │ ├── libCenterHubLibrary_la-exception.Plo │ ├── libCenterHubLibrary_la-main.Plo │ ├── libCenterHubLibrary_la-netioservice.Plo │ ├── libCenterHubLibrary_la-tcp_session.Plo │ ├── libCenterHubLibrary_la-tinystr.Plo │ ├── libCenterHubLibrary_la-tinyxml.Plo │ ├── libCenterHubLibrary_la-tinyxmlerror.Plo │ ├── libCenterHubLibrary_la-tinyxmlparser.Plo │ └── libCenterHubLibrary_la-util.Plo ├── .libs │ ├── libCenterHubLibrary.0.dylib │ ├── libCenterHubLibrary.a │ ├── libCenterHubLibrary.dylib │ ├── libCenterHubLibrary.la │ ├── libCenterHubLibrary.lai │ ├── libCenterHubLibrary_la-ByteCode.o │ ├── libCenterHubLibrary_la-ByteCodeScript.o │ ├── libCenterHubLibrary_la-Chain.o │ ├── libCenterHubLibrary_la-Hashtable.o │ ├── libCenterHubLibrary_la-Heap.o │ ├── libCenterHubLibrary_la-MaintenanceScript.o │ ├── libCenterHubLibrary_la-ObjectPool.o │ ├── libCenterHubLibrary_la-RuntimeBuilderData.o │ ├── libCenterHubLibrary_la-SessionManager.o │ ├── libCenterHubLibrary_la-SlkAction.o │ ├── libCenterHubLibrary_la-SlkError.o │ ├── libCenterHubLibrary_la-SlkParse.o │ ├── libCenterHubLibrary_la-SlkString.o │ ├── libCenterHubLibrary_la-SlkToken.o │ ├── libCenterHubLibrary_la-SourceCodeScript.o │ ├── libCenterHubLibrary_la-StringFormat.o │ ├── libCenterHubLibrary_la-Thread.o │ ├── libCenterHubLibrary_la-acceptor.o │ ├── libCenterHubLibrary_la-base64.o │ ├── libCenterHubLibrary_la-calc.o │ ├── libCenterHubLibrary_la-connector.o │ ├── libCenterHubLibrary_la-exception.o │ ├── libCenterHubLibrary_la-main.o │ ├── libCenterHubLibrary_la-netioservice.o │ ├── libCenterHubLibrary_la-tcp_session.o │ ├── libCenterHubLibrary_la-tinystr.o │ ├── libCenterHubLibrary_la-tinyxml.o │ ├── libCenterHubLibrary_la-tinyxmlerror.o │ ├── libCenterHubLibrary_la-tinyxmlparser.o │ └── libCenterHubLibrary_la-util.o ├── CenterHub.h ├── CenterHubLibrary.vcxproj ├── CenterHubLibrary.vcxproj.filters ├── Communication │ ├── SessionManager.cpp │ └── SessionManager.h ├── DllExport.def ├── Makefile ├── Makefile.am ├── Makefile.common.in ├── Makefile.gen ├── Makefile.in ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── output.2 │ ├── requests │ ├── traces.0 │ ├── traces.1 │ └── traces.2 ├── autoscan.log ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.h.in~ ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── configure.scan ├── depcomp ├── install-sh ├── libCenterHubLibrary.la ├── libCenterHubLibrary_la-ByteCode.lo ├── libCenterHubLibrary_la-ByteCode.o ├── libCenterHubLibrary_la-ByteCodeScript.lo ├── libCenterHubLibrary_la-ByteCodeScript.o ├── libCenterHubLibrary_la-Chain.lo ├── libCenterHubLibrary_la-Chain.o ├── libCenterHubLibrary_la-Hashtable.lo ├── libCenterHubLibrary_la-Hashtable.o ├── libCenterHubLibrary_la-Heap.lo ├── libCenterHubLibrary_la-Heap.o ├── libCenterHubLibrary_la-MaintenanceScript.lo ├── libCenterHubLibrary_la-MaintenanceScript.o ├── libCenterHubLibrary_la-ObjectPool.lo ├── libCenterHubLibrary_la-ObjectPool.o ├── libCenterHubLibrary_la-RuntimeBuilderData.lo ├── libCenterHubLibrary_la-RuntimeBuilderData.o ├── libCenterHubLibrary_la-SessionManager.lo ├── libCenterHubLibrary_la-SessionManager.o ├── libCenterHubLibrary_la-SlkAction.lo ├── libCenterHubLibrary_la-SlkAction.o ├── libCenterHubLibrary_la-SlkError.lo ├── libCenterHubLibrary_la-SlkError.o ├── libCenterHubLibrary_la-SlkParse.lo ├── libCenterHubLibrary_la-SlkParse.o ├── libCenterHubLibrary_la-SlkString.lo ├── libCenterHubLibrary_la-SlkString.o ├── libCenterHubLibrary_la-SlkToken.lo ├── libCenterHubLibrary_la-SlkToken.o ├── libCenterHubLibrary_la-SourceCodeScript.lo ├── libCenterHubLibrary_la-SourceCodeScript.o ├── libCenterHubLibrary_la-StringFormat.lo ├── libCenterHubLibrary_la-StringFormat.o ├── libCenterHubLibrary_la-Thread.lo ├── libCenterHubLibrary_la-Thread.o ├── libCenterHubLibrary_la-acceptor.lo ├── libCenterHubLibrary_la-acceptor.o ├── libCenterHubLibrary_la-base64.lo ├── libCenterHubLibrary_la-base64.o ├── libCenterHubLibrary_la-calc.lo ├── libCenterHubLibrary_la-calc.o ├── libCenterHubLibrary_la-connector.lo ├── libCenterHubLibrary_la-connector.o ├── libCenterHubLibrary_la-exception.lo ├── libCenterHubLibrary_la-exception.o ├── libCenterHubLibrary_la-main.lo ├── libCenterHubLibrary_la-main.o ├── libCenterHubLibrary_la-netioservice.lo ├── libCenterHubLibrary_la-netioservice.o ├── libCenterHubLibrary_la-tcp_session.lo ├── libCenterHubLibrary_la-tcp_session.o ├── libCenterHubLibrary_la-tinystr.lo ├── libCenterHubLibrary_la-tinystr.o ├── libCenterHubLibrary_la-tinyxml.lo ├── libCenterHubLibrary_la-tinyxml.o ├── libCenterHubLibrary_la-tinyxmlerror.lo ├── libCenterHubLibrary_la-tinyxmlerror.o ├── libCenterHubLibrary_la-tinyxmlparser.lo ├── libCenterHubLibrary_la-tinyxmlparser.o ├── libCenterHubLibrary_la-util.lo ├── libCenterHubLibrary_la-util.o ├── libtool ├── ltmain.sh ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── main.cpp ├── missing └── stamp-h1 ├── Common ├── .DS_Store ├── BaseType.h ├── Chain.cpp ├── Chain.h ├── Chain.inl ├── ChainNodePool.h ├── ChainNodePool.inl ├── ConfigScript │ ├── CommonScriptApi.h │ ├── MaintenanceScript.cpp │ ├── MaintenanceScript.h │ ├── ScriptThread.cpp │ └── ScriptThread.h ├── Delegation.h ├── Hashtable.cpp ├── Hashtable.h ├── Heap.cpp ├── Heap.h ├── LockEx.h ├── LockFree │ ├── Atomic.h │ ├── Atomic.inl │ ├── LinkQueue.h │ ├── LinkQueuePool.h │ ├── RingBuffer.h │ └── RingQueue.h ├── NetBase │ ├── CMakeLists.txt │ ├── acceptor.cc │ ├── acceptor.h │ ├── connector.cc │ ├── connector.h │ ├── exception.cc │ ├── exception.h │ ├── netioservice.cc │ ├── netioservice.h │ ├── tcp_session.cc │ ├── tcp_session.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── echo.cc │ │ ├── massive_cli.cc │ │ └── massive_svr.cc │ ├── util.cc │ └── util.h ├── ObjectPool.cpp ├── ObjectPool.h ├── ObjectPool.inl ├── Queue.h ├── SimpleScript │ ├── ByteCode.cpp │ ├── ByteCode.h │ ├── ByteCode.inl │ ├── ParserFineTuneHelper.cpp │ ├── ParserFineTuneHelper.h │ ├── RuntimeBuilderData.cpp │ ├── RuntimeBuilderData.h │ ├── SlkAction.cpp │ ├── SlkAction.h │ ├── SlkConstants.h │ ├── SlkError.cpp │ ├── SlkError.h │ ├── SlkExecute.txt │ ├── SlkInc.h │ ├── SlkKeywords.txt │ ├── SlkParse.cpp │ ├── SlkParse.h │ ├── SlkString.cpp │ ├── SlkString.h │ ├── SlkTerminals.h │ ├── SlkToken.cpp │ ├── SlkToken.h │ ├── SourceCodeScript.cpp │ ├── SourceCodeScript.h │ ├── calc.cpp │ ├── calc.h │ ├── simple.txt │ └── slk.exe ├── StaticCheck.h ├── StringFormat.cpp ├── StringFormat.h ├── Thread.cpp ├── Thread.h ├── TinyXml │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── Type.h ├── base64.cpp ├── base64.h └── tsnprintf.h ├── LICENSE.md ├── README.md ├── ServerCenter ├── .deps │ ├── ServerCenter-ByteCode.Po │ ├── ServerCenter-ByteCodeScript.Po │ ├── ServerCenter-Chain.Po │ ├── ServerCenter-Hashtable.Po │ ├── ServerCenter-Heap.Po │ ├── ServerCenter-MaintenanceScript.Po │ ├── ServerCenter-ObjectPool.Po │ ├── ServerCenter-RuntimeBuilderData.Po │ ├── ServerCenter-ScriptThread.Po │ ├── ServerCenter-SessionManager.Po │ ├── ServerCenter-SlkAction.Po │ ├── ServerCenter-SlkError.Po │ ├── ServerCenter-SlkParse.Po │ ├── ServerCenter-SlkString.Po │ ├── ServerCenter-SlkToken.Po │ ├── ServerCenter-SourceCodeScript.Po │ ├── ServerCenter-StringFormat.Po │ ├── ServerCenter-Thread.Po │ ├── ServerCenter-acceptor.Po │ ├── ServerCenter-base64.Po │ ├── ServerCenter-calc.Po │ ├── ServerCenter-connector.Po │ ├── ServerCenter-exception.Po │ ├── ServerCenter-main.Po │ ├── ServerCenter-netioservice.Po │ ├── ServerCenter-tcp_session.Po │ ├── ServerCenter-tinystr.Po │ ├── ServerCenter-tinyxml.Po │ ├── ServerCenter-tinyxmlerror.Po │ ├── ServerCenter-tinyxmlparser.Po │ └── ServerCenter-util.Po ├── Communication │ ├── SessionManager.cpp │ └── SessionManager.h ├── Makefile ├── Makefile.am ├── Makefile.common.in ├── Makefile.gen ├── Makefile.in ├── ServerCenter-ByteCode.o ├── ServerCenter-ByteCodeScript.o ├── ServerCenter-Chain.o ├── ServerCenter-Hashtable.o ├── ServerCenter-Heap.o ├── ServerCenter-MaintenanceScript.o ├── ServerCenter-ObjectPool.o ├── ServerCenter-RuntimeBuilderData.o ├── ServerCenter-ScriptThread.o ├── ServerCenter-SessionManager.o ├── ServerCenter-SlkAction.o ├── ServerCenter-SlkError.o ├── ServerCenter-SlkParse.o ├── ServerCenter-SlkString.o ├── ServerCenter-SlkToken.o ├── ServerCenter-SourceCodeScript.o ├── ServerCenter-StringFormat.o ├── ServerCenter-Thread.o ├── ServerCenter-acceptor.o ├── ServerCenter-base64.o ├── ServerCenter-calc.o ├── ServerCenter-connector.o ├── ServerCenter-exception.o ├── ServerCenter-main.o ├── ServerCenter-netioservice.o ├── ServerCenter-tcp_session.o ├── ServerCenter-tinystr.o ├── ServerCenter-tinyxml.o ├── ServerCenter-tinyxmlerror.o ├── ServerCenter-tinyxmlparser.o ├── ServerCenter-util.o ├── ServerCenter.sln ├── ServerCenter.vcxproj ├── ServerCenter.vcxproj.filters ├── ServerCenter │ └── Debug │ │ ├── ByteCode.obj │ │ ├── ByteCodeScript.obj │ │ ├── Chain.obj │ │ ├── Hashtable.obj │ │ ├── Heap.obj │ │ ├── MaintenanceScript.obj │ │ ├── ObjectPool.obj │ │ ├── ParserFineTuneHelper.obj │ │ ├── RuntimeBuilderData.obj │ │ ├── ScriptThread.obj │ │ ├── ServerCenter.exe.recipe │ │ ├── ServerCenter.ilk │ │ ├── ServerCenter.log │ │ ├── ServerCenter.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Cl.items.tlog │ │ ├── ServerCenter.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.secondary.1.tlog │ │ └── link.write.1.tlog │ │ ├── SessionManager.obj │ │ ├── SlkAction.obj │ │ ├── SlkError.obj │ │ ├── SlkParse.obj │ │ ├── SlkString.obj │ │ ├── SlkToken.obj │ │ ├── SourceCodeScript.obj │ │ ├── StringFormat.obj │ │ ├── Thread.obj │ │ ├── acceptor.obj │ │ ├── base64.obj │ │ ├── calc.obj │ │ ├── connector.obj │ │ ├── exception.obj │ │ ├── main.obj │ │ ├── netioservice.obj │ │ ├── tcp_session.obj │ │ ├── tinystr.obj │ │ ├── tinyxml.obj │ │ ├── tinyxmlerror.obj │ │ ├── tinyxmlparser.obj │ │ ├── util.obj │ │ ├── vc143.idb │ │ └── vc143.pdb ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── autoscan.log ├── compile ├── config.h ├── config.h.in ├── config.h.in~ ├── config.log ├── config.status ├── configure ├── configure.ac ├── configure.scan ├── depcomp ├── install-sh ├── main.cpp ├── missing └── stamp-h1 ├── SessionInfo └── SessionInfo.h ├── bin64 ├── AdminTool.exe ├── CSharpCenterClient.dll ├── CenterClientLibrary.dll ├── CenterClientLibrary.lib ├── CenterHubLibrary.dll ├── CenterHubLibrary.lib ├── ServerCenter.exe ├── center_client.node └── node.exe ├── bin_linux ├── AdminTool ├── ServerCenter ├── center_client.node ├── libCenterClientLibrary.a ├── libCenterClientLibrary.la ├── libCenterClientLibrary.so.0.0.0 ├── libCenterHubLibrary.a ├── libCenterHubLibrary.la └── libCenterHubLibrary.so.0.0.0 ├── bin_mac ├── AdminTool ├── ServerCenter ├── center_client.node ├── libCenterClientLibrary.0.dylib ├── libCenterClientLibrary.a ├── libCenterClientLibrary.la ├── libCenterHubLibrary.0.dylib ├── libCenterHubLibrary.a └── libCenterHubLibrary.la ├── compile_linux ├── admintool_configure.sed ├── admintool_makefile.sed ├── centerclient_configure.sed ├── centerclient_makefile.sed ├── centerhub_configure.sed ├── centerhub_makefile.sed ├── compile_centerclient.sh ├── compile_centerhub.sh ├── compile_servercenter.sh ├── compiler ├── convert.scp ├── readme.txt ├── runscp ├── servercenter_configure.sed └── servercenter_makefile.sed ├── compile_mac ├── .DS_Store ├── Makefile.am ├── Makefile.common.in ├── Makefile.gen ├── admintool_configure.sed ├── admintool_makefile.sed ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── autoscan.log ├── centerclient_configure.sed ├── centerclient_makefile.sed ├── centerhub_configure.sed ├── centerhub_makefile.sed ├── compile_centerclient.sh ├── compile_centerhub.sh ├── compile_servercenter.sh ├── compiler ├── config.log ├── config.status ├── configure ├── configure.ac ├── configure.scan ├── convert.scp ├── depcomp ├── readme.txt ├── runscp ├── servercenter_configure.sed └── servercenter_makefile.sed ├── libevent-2.1.12-stable ├── .clang-format ├── .github │ └── workflows │ │ ├── abi.yml │ │ ├── linux.yml │ │ ├── macos.yml │ │ ├── mingw.yml │ │ └── windows.yml ├── .gitignore ├── .mailmap ├── .uncrustify ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog ├── ChangeLog-1.4 ├── ChangeLog-2.0 ├── Doxyfile ├── LICENSE ├── Makefile.am ├── Makefile.nmake ├── README.md ├── Vagrantfile ├── WIN32-Code │ ├── getopt.c │ ├── getopt.h │ ├── getopt_long.c │ ├── nmake │ │ ├── evconfig-private.h │ │ └── event2 │ │ │ └── event-config.h │ └── tree.h ├── arc4random.c ├── autogen.sh ├── buffer.c ├── buffer_iocp.c ├── bufferevent-internal.h ├── bufferevent.c ├── bufferevent_async.c ├── bufferevent_filter.c ├── bufferevent_openssl.c ├── bufferevent_pair.c ├── bufferevent_ratelim.c ├── bufferevent_sock.c ├── build32.bat ├── build64.bat ├── changelist-internal.h ├── checkpatch.sh ├── cmake │ ├── AddCompilerFlags.cmake │ ├── AddEventLibrary.cmake │ ├── COPYING-CMAKE-SCRIPTS │ ├── CheckConstExists.cmake │ ├── CheckFileOffsetBits.c │ ├── CheckFileOffsetBits.cmake │ ├── CheckFunctionKeywords.cmake │ ├── CheckPrototypeDefinition.c.in │ ├── CheckPrototypeDefinition.cmake │ ├── CheckWorkingKqueue.cmake │ ├── CodeCoverage.cmake │ ├── Copyright.txt │ ├── LibeventConfig.cmake.in │ ├── LibeventConfigVersion.cmake.in │ ├── Macros.cmake │ ├── Uninstall.cmake.in │ ├── UseDoxygen.cmake │ └── VersionViaGit.cmake ├── compat │ └── sys │ │ └── queue.h ├── configure.ac ├── defer-internal.h ├── devpoll.c ├── doxygen.am ├── epoll.c ├── epoll_sub.c ├── epolltable-internal.h ├── evbuffer-internal.h ├── evconfig-private.h.cmake ├── evconfig-private.h.in ├── evdns.3 ├── evdns.c ├── event-config.h.cmake ├── event-internal.h ├── event.3 ├── event.c ├── event_iocp.c ├── event_rpcgen.py ├── event_tagging.c ├── evmap-internal.h ├── evmap.c ├── evport.c ├── evrpc-internal.h ├── evrpc.c ├── evsignal-internal.h ├── evthread-internal.h ├── evthread.c ├── evthread_pthread.c ├── evthread_win32.c ├── evutil.c ├── evutil_rand.c ├── evutil_time.c ├── extra │ ├── abi-check │ │ ├── README.md │ │ ├── abi_check.sh │ │ └── libevent.json │ ├── lsan.supp │ └── tsan.supp ├── ht-internal.h ├── http-internal.h ├── http.c ├── include │ ├── evdns.h │ ├── event.h │ ├── event2 │ │ ├── buffer.h │ │ ├── buffer_compat.h │ │ ├── bufferevent.h │ │ ├── bufferevent_compat.h │ │ ├── bufferevent_ssl.h │ │ ├── bufferevent_struct.h │ │ ├── dns.h │ │ ├── dns_compat.h │ │ ├── dns_struct.h │ │ ├── event.h │ │ ├── event_compat.h │ │ ├── event_struct.h │ │ ├── http.h │ │ ├── http_compat.h │ │ ├── http_struct.h │ │ ├── keyvalq_struct.h │ │ ├── listener.h │ │ ├── rpc.h │ │ ├── rpc_compat.h │ │ ├── rpc_struct.h │ │ ├── tag.h │ │ ├── tag_compat.h │ │ ├── thread.h │ │ ├── util.h │ │ └── visibility.h │ ├── evhttp.h │ ├── evrpc.h │ ├── evutil.h │ ├── include.am │ ├── win32 │ │ ├── evconfig-private.h │ │ └── event2 │ │ │ └── event-config.h │ └── x64 │ │ ├── evconfig-private.h │ │ └── event2 │ │ └── event-config.h ├── iocp-internal.h ├── ipv6-internal.h ├── kqueue-internal.h ├── kqueue.c ├── libevent.pc.in ├── libevent_core.pc.in ├── libevent_extra.pc.in ├── libevent_openssl.pc.in ├── libevent_pthreads.pc.in ├── listener.c ├── log-internal.h ├── log.c ├── m4 │ ├── ac_backport_259_ssizet.m4 │ ├── acx_pthread.m4 │ ├── ax_check_funcs_ex.m4 │ ├── ax_prog_doxygen.m4 │ ├── libevent_openssl.m4 │ └── ntp_pkg_config.m4 ├── make-event-config.sed ├── make_epoll_table.py ├── minheap-internal.h ├── mm-internal.h ├── openssl-compat.h ├── poll.c ├── ratelim-internal.h ├── sample │ ├── dns-example.c │ ├── event-read-fifo.c │ ├── hello-world.c │ ├── hostcheck.c │ ├── hostcheck.h │ ├── http-connect.c │ ├── http-server.c │ ├── https-client.c │ ├── include.am │ ├── le-proxy.c │ ├── openssl_hostname_validation.c │ ├── openssl_hostname_validation.h │ ├── signal-test.c │ └── time-test.c ├── select.c ├── signal.c ├── strlcpy-internal.h ├── strlcpy.c ├── test-export │ ├── CMakeLists.txt │ ├── test-export.c │ └── test-export.py ├── test │ ├── Makefile.nmake │ ├── bench.c │ ├── bench_cascade.c │ ├── bench_http.c │ ├── bench_httpclient.c │ ├── check-dumpevents.py │ ├── include.am │ ├── print-winsock-errors.c │ ├── regress.c │ ├── regress.h │ ├── regress.rpc │ ├── regress_buffer.c │ ├── regress_bufferevent.c │ ├── regress_dns.c │ ├── regress_et.c │ ├── regress_finalize.c │ ├── regress_http.c │ ├── regress_iocp.c │ ├── regress_listener.c │ ├── regress_main.c │ ├── regress_minheap.c │ ├── regress_rpc.c │ ├── regress_ssl.c │ ├── regress_testutils.c │ ├── regress_testutils.h │ ├── regress_thread.c │ ├── regress_thread.h │ ├── regress_util.c │ ├── regress_zlib.c │ ├── rpcgen_wrapper.sh │ ├── test-changelist.c │ ├── test-closed.c │ ├── test-dumpevents.c │ ├── test-eof.c │ ├── test-fdleak.c │ ├── test-init.c │ ├── test-ratelim.c │ ├── test-ratelim.sh │ ├── test-time.c │ ├── test-weof.c │ ├── test.sh │ ├── tinytest.c │ ├── tinytest.h │ ├── tinytest_demo.c │ ├── tinytest_local.h │ └── tinytest_macros.h ├── time-internal.h ├── util-internal.h ├── whatsnew-2.0.txt ├── whatsnew-2.1.txt └── win32select.c └── node_center_client ├── .DS_Store ├── CenterClient.h ├── CenterClientLibrary.lib ├── Readme.txt ├── app.js ├── binding.gyp ├── build ├── Release │ ├── center_client.exp │ ├── center_client.iobj │ ├── center_client.ipdb │ ├── center_client.lib │ ├── center_client.node │ ├── center_client.pdb │ ├── nothing.lib │ └── obj │ │ └── center_client │ │ ├── center_client.node.recipe │ │ ├── center_client.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Cl.items.tlog │ │ ├── center_client.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.secondary.1.tlog │ │ └── link.write.1.tlog │ │ ├── main.obj │ │ └── win_delay_load_hook.obj ├── binding.sln ├── center_client.vcxproj ├── center_client.vcxproj.filters ├── config.gypi └── node_modules │ └── node-addon-api │ ├── Release │ └── obj │ │ └── nothing │ │ ├── node_modules │ │ └── node-addon-api │ │ │ └── nothing.obj │ │ ├── nothing.lib.recipe │ │ ├── nothing.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Cl.items.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── Lib.command.1.tlog │ │ └── nothing.lastbuildstate │ │ └── win_delay_load_hook.obj │ ├── node_api.sln │ ├── nothing.vcxproj │ └── nothing.vcxproj.filters ├── kfifo.h ├── main.cc ├── node_modules ├── .package-lock.json └── node-addon-api │ ├── LICENSE.md │ ├── README.md │ ├── common.gypi │ ├── except.gypi │ ├── index.js │ ├── napi-inl.deprecated.h │ ├── napi-inl.h │ ├── napi.h │ ├── node_addon_api.gyp │ ├── node_api.gyp │ ├── noexcept.gypi │ ├── nothing.c │ ├── package-support.json │ ├── package.json │ └── tools │ ├── README.md │ ├── check-napi.js │ ├── clang-format.js │ ├── conversion.js │ └── eslint-format.js ├── package-lock.json └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/.gitignore -------------------------------------------------------------------------------- /AdminTool/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.DS_Store -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-AdminTool.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-AdminTool.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-ByteCode.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-ByteCode.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-ByteCodeScript.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-ByteCodeScript.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-Chain.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-Chain.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-Hashtable.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-Hashtable.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-Heap.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-Heap.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-ObjectPool.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-ObjectPool.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-RuntimeBuilderData.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-RuntimeBuilderData.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-ScriptThread.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-ScriptThread.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkAction.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SlkAction.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkError.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SlkError.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkLog.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkParse.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SlkParse.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkString.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SlkString.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SlkToken.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SlkToken.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-SourceCodeScript.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-SourceCodeScript.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-StringFormat.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-StringFormat.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-Thread.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-Thread.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-acceptor.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-acceptor.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-base64.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-base64.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-calc.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-calc.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-connector.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-connector.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-exception.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-exception.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-minilzo.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-minilzo.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-netioservice.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-netioservice.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-stdafx.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-stdafx.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-tcp_session.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-tcp_session.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-tinystr.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-tinystr.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-tinyxml.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-tinyxml.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-tinyxmlerror.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-tinyxmlerror.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-tinyxmlparser.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-tinyxmlparser.Po -------------------------------------------------------------------------------- /AdminTool/.deps/AdminTool-util.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/.deps/AdminTool-util.Po -------------------------------------------------------------------------------- /AdminTool/AdminTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool -------------------------------------------------------------------------------- /AdminTool/AdminTool-AdminTool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-AdminTool.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-ByteCode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-ByteCode.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-ByteCodeScript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-ByteCodeScript.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-Chain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-Chain.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-Hashtable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-Hashtable.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-Heap.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-ObjectPool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-ObjectPool.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-RuntimeBuilderData.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-RuntimeBuilderData.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-ScriptThread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-ScriptThread.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SlkAction.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SlkAction.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SlkError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SlkError.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SlkParse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SlkParse.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SlkString.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SlkString.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SlkToken.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SlkToken.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-SourceCodeScript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-SourceCodeScript.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-StringFormat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-StringFormat.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-Thread.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-acceptor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-acceptor.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-base64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-base64.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-calc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-calc.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-connector.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-connector.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-exception.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-exception.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-minilzo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-minilzo.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-netioservice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-netioservice.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-stdafx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-stdafx.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-tcp_session.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-tcp_session.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-tinystr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-tinystr.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-tinyxml.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-tinyxml.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-tinyxmlerror.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-tinyxmlerror.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-tinyxmlparser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-tinyxmlparser.o -------------------------------------------------------------------------------- /AdminTool/AdminTool-util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool-util.o -------------------------------------------------------------------------------- /AdminTool/AdminTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool.cpp -------------------------------------------------------------------------------- /AdminTool/AdminTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool.sln -------------------------------------------------------------------------------- /AdminTool/AdminTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool.vcxproj -------------------------------------------------------------------------------- /AdminTool/AdminTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/AdminTool.vcxproj.filters -------------------------------------------------------------------------------- /AdminTool/Common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Common/.DS_Store -------------------------------------------------------------------------------- /AdminTool/Common/GmScript/ScriptThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Common/GmScript/ScriptThread.cpp -------------------------------------------------------------------------------- /AdminTool/Common/GmScript/ScriptThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Common/GmScript/ScriptThread.h -------------------------------------------------------------------------------- /AdminTool/Common/GmScript/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Common/GmScript/Stream.h -------------------------------------------------------------------------------- /AdminTool/Compress/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Compress/lzoconf.h -------------------------------------------------------------------------------- /AdminTool/Compress/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Compress/lzodefs.h -------------------------------------------------------------------------------- /AdminTool/Compress/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Compress/minilzo.c -------------------------------------------------------------------------------- /AdminTool/Compress/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Compress/minilzo.h -------------------------------------------------------------------------------- /AdminTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Makefile -------------------------------------------------------------------------------- /AdminTool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Makefile.am -------------------------------------------------------------------------------- /AdminTool/Makefile.common.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Makefile.gen -------------------------------------------------------------------------------- /AdminTool/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/Makefile.in -------------------------------------------------------------------------------- /AdminTool/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/aclocal.m4 -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/output.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/output.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/autom4te.cache/output.2 -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/output.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/autom4te.cache/output.3 -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/autom4te.cache/requests -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/traces.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/traces.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/traces.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/autom4te.cache/traces.2 -------------------------------------------------------------------------------- /AdminTool/autom4te.cache/traces.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/autom4te.cache/traces.3 -------------------------------------------------------------------------------- /AdminTool/autoscan.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdminTool/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/compile -------------------------------------------------------------------------------- /AdminTool/compile_admintool_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/compile_admintool_linux -------------------------------------------------------------------------------- /AdminTool/compile_admintool_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/compile_admintool_mac -------------------------------------------------------------------------------- /AdminTool/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/config.h -------------------------------------------------------------------------------- /AdminTool/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/config.h.in -------------------------------------------------------------------------------- /AdminTool/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/config.h.in~ -------------------------------------------------------------------------------- /AdminTool/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/config.log -------------------------------------------------------------------------------- /AdminTool/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/config.status -------------------------------------------------------------------------------- /AdminTool/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/configure -------------------------------------------------------------------------------- /AdminTool/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/configure.ac -------------------------------------------------------------------------------- /AdminTool/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/configure.scan -------------------------------------------------------------------------------- /AdminTool/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/depcomp -------------------------------------------------------------------------------- /AdminTool/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/install-sh -------------------------------------------------------------------------------- /AdminTool/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/missing -------------------------------------------------------------------------------- /AdminTool/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /AdminTool/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/stdafx.cpp -------------------------------------------------------------------------------- /AdminTool/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/stdafx.h -------------------------------------------------------------------------------- /AdminTool/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/AdminTool/targetver.h -------------------------------------------------------------------------------- /CSharpCenterClient/CSharpCenterClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpCenterClient/CSharpCenterClient.csproj -------------------------------------------------------------------------------- /CSharpCenterClient/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpCenterClient/Main.cs -------------------------------------------------------------------------------- /CSharpCenterClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpCenterClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharpClientTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpClientTest/App.config -------------------------------------------------------------------------------- /CSharpClientTest/CSharpClientTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpClientTest/CSharpClientTest.csproj -------------------------------------------------------------------------------- /CSharpClientTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpClientTest/Program.cs -------------------------------------------------------------------------------- /CSharpClientTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CSharpClientTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CenterClientLibrary/.libs/libCenterClientLibrary.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/.libs/libCenterClientLibrary.0.dylib -------------------------------------------------------------------------------- /CenterClientLibrary/.libs/libCenterClientLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/.libs/libCenterClientLibrary.a -------------------------------------------------------------------------------- /CenterClientLibrary/.libs/libCenterClientLibrary.dylib: -------------------------------------------------------------------------------- 1 | libCenterClientLibrary.0.dylib -------------------------------------------------------------------------------- /CenterClientLibrary/.libs/libCenterClientLibrary.la: -------------------------------------------------------------------------------- 1 | ../libCenterClientLibrary.la -------------------------------------------------------------------------------- /CenterClientLibrary/.libs/libCenterClientLibrary.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/.libs/libCenterClientLibrary.lai -------------------------------------------------------------------------------- /CenterClientLibrary/CenterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/CenterClient.h -------------------------------------------------------------------------------- /CenterClientLibrary/CenterClientLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/CenterClientLibrary.vcxproj -------------------------------------------------------------------------------- /CenterClientLibrary/CenterClientLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/CenterClientLibrary.vcxproj.filters -------------------------------------------------------------------------------- /CenterClientLibrary/Communication/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Communication/SessionManager.cpp -------------------------------------------------------------------------------- /CenterClientLibrary/Communication/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Communication/SessionManager.h -------------------------------------------------------------------------------- /CenterClientLibrary/DllExport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/DllExport.def -------------------------------------------------------------------------------- /CenterClientLibrary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Makefile -------------------------------------------------------------------------------- /CenterClientLibrary/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Makefile.am -------------------------------------------------------------------------------- /CenterClientLibrary/Makefile.common.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Makefile.gen -------------------------------------------------------------------------------- /CenterClientLibrary/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/Makefile.in -------------------------------------------------------------------------------- /CenterClientLibrary/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/aclocal.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/output.2 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/output.3 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/output.4 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/output.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/output.5 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/requests -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/traces.2 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/traces.3 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/traces.4 -------------------------------------------------------------------------------- /CenterClientLibrary/autom4te.cache/traces.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/autom4te.cache/traces.5 -------------------------------------------------------------------------------- /CenterClientLibrary/autoscan.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterClientLibrary/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/compile -------------------------------------------------------------------------------- /CenterClientLibrary/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.guess -------------------------------------------------------------------------------- /CenterClientLibrary/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.h -------------------------------------------------------------------------------- /CenterClientLibrary/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.h.in -------------------------------------------------------------------------------- /CenterClientLibrary/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.log -------------------------------------------------------------------------------- /CenterClientLibrary/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.status -------------------------------------------------------------------------------- /CenterClientLibrary/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/config.sub -------------------------------------------------------------------------------- /CenterClientLibrary/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/configure -------------------------------------------------------------------------------- /CenterClientLibrary/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/configure.ac -------------------------------------------------------------------------------- /CenterClientLibrary/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/configure.scan -------------------------------------------------------------------------------- /CenterClientLibrary/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/depcomp -------------------------------------------------------------------------------- /CenterClientLibrary/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/install-sh -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary.la -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-ByteCode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-ByteCode.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Chain.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Chain.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Chain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Chain.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Heap.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Heap.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Heap.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-SlkError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-SlkError.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-SlkParse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-SlkParse.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-SlkToken.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-SlkToken.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Thread.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Thread.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-Thread.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-acceptor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-acceptor.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-base64.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-base64.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-calc.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-calc.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-calc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-calc.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-main.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-main.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-main.o -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-util.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-util.lo -------------------------------------------------------------------------------- /CenterClientLibrary/libCenterClientLibrary_la-util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libCenterClientLibrary_la-util.o -------------------------------------------------------------------------------- /CenterClientLibrary/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/libtool -------------------------------------------------------------------------------- /CenterClientLibrary/ltmain.sh: -------------------------------------------------------------------------------- 1 | /usr/local/share/libtool/build-aux/ltmain.sh -------------------------------------------------------------------------------- /CenterClientLibrary/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/m4/libtool.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/m4/ltoptions.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/m4/ltsugar.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/m4/ltversion.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /CenterClientLibrary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/main.cpp -------------------------------------------------------------------------------- /CenterClientLibrary/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterClientLibrary/missing -------------------------------------------------------------------------------- /CenterClientLibrary/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary.0.dylib -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary.a -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary.dylib: -------------------------------------------------------------------------------- 1 | libCenterHubLibrary.0.dylib -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary.la: -------------------------------------------------------------------------------- 1 | ../libCenterHubLibrary.la -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary.lai -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary_la-Chain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary_la-Chain.o -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary_la-Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary_la-Heap.o -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary_la-calc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary_la-calc.o -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary_la-main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary_la-main.o -------------------------------------------------------------------------------- /CenterHubLibrary/.libs/libCenterHubLibrary_la-util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/.libs/libCenterHubLibrary_la-util.o -------------------------------------------------------------------------------- /CenterHubLibrary/CenterHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/CenterHub.h -------------------------------------------------------------------------------- /CenterHubLibrary/CenterHubLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/CenterHubLibrary.vcxproj -------------------------------------------------------------------------------- /CenterHubLibrary/CenterHubLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/CenterHubLibrary.vcxproj.filters -------------------------------------------------------------------------------- /CenterHubLibrary/Communication/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Communication/SessionManager.cpp -------------------------------------------------------------------------------- /CenterHubLibrary/Communication/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Communication/SessionManager.h -------------------------------------------------------------------------------- /CenterHubLibrary/DllExport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/DllExport.def -------------------------------------------------------------------------------- /CenterHubLibrary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Makefile -------------------------------------------------------------------------------- /CenterHubLibrary/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Makefile.am -------------------------------------------------------------------------------- /CenterHubLibrary/Makefile.common.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterHubLibrary/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Makefile.gen -------------------------------------------------------------------------------- /CenterHubLibrary/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/Makefile.in -------------------------------------------------------------------------------- /CenterHubLibrary/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/aclocal.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/output.0 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/output.1 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/output.2 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/requests -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /CenterHubLibrary/autom4te.cache/traces.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/autom4te.cache/traces.2 -------------------------------------------------------------------------------- /CenterHubLibrary/autoscan.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CenterHubLibrary/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/compile -------------------------------------------------------------------------------- /CenterHubLibrary/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.guess -------------------------------------------------------------------------------- /CenterHubLibrary/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.h -------------------------------------------------------------------------------- /CenterHubLibrary/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.h.in -------------------------------------------------------------------------------- /CenterHubLibrary/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.h.in~ -------------------------------------------------------------------------------- /CenterHubLibrary/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.log -------------------------------------------------------------------------------- /CenterHubLibrary/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.status -------------------------------------------------------------------------------- /CenterHubLibrary/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/config.sub -------------------------------------------------------------------------------- /CenterHubLibrary/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/configure -------------------------------------------------------------------------------- /CenterHubLibrary/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/configure.ac -------------------------------------------------------------------------------- /CenterHubLibrary/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/configure.scan -------------------------------------------------------------------------------- /CenterHubLibrary/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/depcomp -------------------------------------------------------------------------------- /CenterHubLibrary/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/install-sh -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary.la -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-ByteCode.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-ByteCode.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-ByteCode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-ByteCode.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Chain.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Chain.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Chain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Chain.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Hashtable.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Hashtable.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Hashtable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Hashtable.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Heap.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Heap.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Heap.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-ObjectPool.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-ObjectPool.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-ObjectPool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-ObjectPool.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkAction.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkAction.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkAction.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkAction.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkError.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkError.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkError.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkParse.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkParse.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkParse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkParse.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkString.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkString.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkString.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkString.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkToken.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkToken.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-SlkToken.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-SlkToken.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Thread.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Thread.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-Thread.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-acceptor.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-acceptor.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-acceptor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-acceptor.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-base64.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-base64.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-base64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-base64.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-calc.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-calc.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-calc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-calc.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-connector.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-connector.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-connector.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-connector.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-exception.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-exception.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-exception.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-exception.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-main.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-main.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-main.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-tcp_session.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-tcp_session.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-tinystr.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-tinystr.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-tinystr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-tinystr.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-tinyxml.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-tinyxml.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-tinyxml.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-tinyxml.o -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-util.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-util.lo -------------------------------------------------------------------------------- /CenterHubLibrary/libCenterHubLibrary_la-util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libCenterHubLibrary_la-util.o -------------------------------------------------------------------------------- /CenterHubLibrary/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/libtool -------------------------------------------------------------------------------- /CenterHubLibrary/ltmain.sh: -------------------------------------------------------------------------------- 1 | /usr/local/share/libtool/build-aux/ltmain.sh -------------------------------------------------------------------------------- /CenterHubLibrary/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/m4/libtool.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/m4/ltoptions.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/m4/ltsugar.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/m4/ltversion.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /CenterHubLibrary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/main.cpp -------------------------------------------------------------------------------- /CenterHubLibrary/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/CenterHubLibrary/missing -------------------------------------------------------------------------------- /CenterHubLibrary/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /Common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/.DS_Store -------------------------------------------------------------------------------- /Common/BaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/BaseType.h -------------------------------------------------------------------------------- /Common/Chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Chain.cpp -------------------------------------------------------------------------------- /Common/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Chain.h -------------------------------------------------------------------------------- /Common/Chain.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Chain.inl -------------------------------------------------------------------------------- /Common/ChainNodePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ChainNodePool.h -------------------------------------------------------------------------------- /Common/ChainNodePool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ChainNodePool.inl -------------------------------------------------------------------------------- /Common/ConfigScript/CommonScriptApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ConfigScript/CommonScriptApi.h -------------------------------------------------------------------------------- /Common/ConfigScript/MaintenanceScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ConfigScript/MaintenanceScript.cpp -------------------------------------------------------------------------------- /Common/ConfigScript/MaintenanceScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ConfigScript/MaintenanceScript.h -------------------------------------------------------------------------------- /Common/ConfigScript/ScriptThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ConfigScript/ScriptThread.cpp -------------------------------------------------------------------------------- /Common/ConfigScript/ScriptThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ConfigScript/ScriptThread.h -------------------------------------------------------------------------------- /Common/Delegation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Delegation.h -------------------------------------------------------------------------------- /Common/Hashtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Hashtable.cpp -------------------------------------------------------------------------------- /Common/Hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Hashtable.h -------------------------------------------------------------------------------- /Common/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Heap.cpp -------------------------------------------------------------------------------- /Common/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Heap.h -------------------------------------------------------------------------------- /Common/LockEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockEx.h -------------------------------------------------------------------------------- /Common/LockFree/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/Atomic.h -------------------------------------------------------------------------------- /Common/LockFree/Atomic.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/Atomic.inl -------------------------------------------------------------------------------- /Common/LockFree/LinkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/LinkQueue.h -------------------------------------------------------------------------------- /Common/LockFree/LinkQueuePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/LinkQueuePool.h -------------------------------------------------------------------------------- /Common/LockFree/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/RingBuffer.h -------------------------------------------------------------------------------- /Common/LockFree/RingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/LockFree/RingQueue.h -------------------------------------------------------------------------------- /Common/NetBase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/CMakeLists.txt -------------------------------------------------------------------------------- /Common/NetBase/acceptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/acceptor.cc -------------------------------------------------------------------------------- /Common/NetBase/acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/acceptor.h -------------------------------------------------------------------------------- /Common/NetBase/connector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/connector.cc -------------------------------------------------------------------------------- /Common/NetBase/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/connector.h -------------------------------------------------------------------------------- /Common/NetBase/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/exception.cc -------------------------------------------------------------------------------- /Common/NetBase/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/exception.h -------------------------------------------------------------------------------- /Common/NetBase/netioservice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/netioservice.cc -------------------------------------------------------------------------------- /Common/NetBase/netioservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/netioservice.h -------------------------------------------------------------------------------- /Common/NetBase/tcp_session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tcp_session.cc -------------------------------------------------------------------------------- /Common/NetBase/tcp_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tcp_session.h -------------------------------------------------------------------------------- /Common/NetBase/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tests/CMakeLists.txt -------------------------------------------------------------------------------- /Common/NetBase/tests/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tests/data -------------------------------------------------------------------------------- /Common/NetBase/tests/echo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tests/echo.cc -------------------------------------------------------------------------------- /Common/NetBase/tests/massive_cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tests/massive_cli.cc -------------------------------------------------------------------------------- /Common/NetBase/tests/massive_svr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/tests/massive_svr.cc -------------------------------------------------------------------------------- /Common/NetBase/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/util.cc -------------------------------------------------------------------------------- /Common/NetBase/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/NetBase/util.h -------------------------------------------------------------------------------- /Common/ObjectPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ObjectPool.cpp -------------------------------------------------------------------------------- /Common/ObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ObjectPool.h -------------------------------------------------------------------------------- /Common/ObjectPool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/ObjectPool.inl -------------------------------------------------------------------------------- /Common/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Queue.h -------------------------------------------------------------------------------- /Common/SimpleScript/ByteCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/ByteCode.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/ByteCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/ByteCode.h -------------------------------------------------------------------------------- /Common/SimpleScript/ByteCode.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/ByteCode.inl -------------------------------------------------------------------------------- /Common/SimpleScript/ParserFineTuneHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/ParserFineTuneHelper.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/ParserFineTuneHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/ParserFineTuneHelper.h -------------------------------------------------------------------------------- /Common/SimpleScript/RuntimeBuilderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/RuntimeBuilderData.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/RuntimeBuilderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/RuntimeBuilderData.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkAction.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SlkAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkAction.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkConstants.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkError.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SlkError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkError.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkExecute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkExecute.txt -------------------------------------------------------------------------------- /Common/SimpleScript/SlkInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkInc.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkKeywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkKeywords.txt -------------------------------------------------------------------------------- /Common/SimpleScript/SlkParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkParse.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SlkParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkParse.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkString.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SlkString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkString.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkTerminals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkTerminals.h -------------------------------------------------------------------------------- /Common/SimpleScript/SlkToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkToken.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SlkToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SlkToken.h -------------------------------------------------------------------------------- /Common/SimpleScript/SourceCodeScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SourceCodeScript.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/SourceCodeScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/SourceCodeScript.h -------------------------------------------------------------------------------- /Common/SimpleScript/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/calc.cpp -------------------------------------------------------------------------------- /Common/SimpleScript/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/calc.h -------------------------------------------------------------------------------- /Common/SimpleScript/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/simple.txt -------------------------------------------------------------------------------- /Common/SimpleScript/slk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/SimpleScript/slk.exe -------------------------------------------------------------------------------- /Common/StaticCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/StaticCheck.h -------------------------------------------------------------------------------- /Common/StringFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/StringFormat.cpp -------------------------------------------------------------------------------- /Common/StringFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/StringFormat.h -------------------------------------------------------------------------------- /Common/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Thread.cpp -------------------------------------------------------------------------------- /Common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Thread.h -------------------------------------------------------------------------------- /Common/TinyXml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinystr.cpp -------------------------------------------------------------------------------- /Common/TinyXml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinystr.h -------------------------------------------------------------------------------- /Common/TinyXml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinyxml.cpp -------------------------------------------------------------------------------- /Common/TinyXml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinyxml.h -------------------------------------------------------------------------------- /Common/TinyXml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /Common/TinyXml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/TinyXml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /Common/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/Type.h -------------------------------------------------------------------------------- /Common/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/base64.cpp -------------------------------------------------------------------------------- /Common/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/base64.h -------------------------------------------------------------------------------- /Common/tsnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/Common/tsnprintf.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 可以任意使用与修改,只需要承认出处就可以了。 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/README.md -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-ByteCode.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-ByteCode.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-ByteCodeScript.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-ByteCodeScript.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-Chain.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-Chain.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-Hashtable.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-Hashtable.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-Heap.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-Heap.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-MaintenanceScript.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-MaintenanceScript.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-ObjectPool.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-ObjectPool.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-RuntimeBuilderData.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-RuntimeBuilderData.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-ScriptThread.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-ScriptThread.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SessionManager.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SessionManager.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SlkAction.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SlkAction.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SlkError.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SlkError.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SlkParse.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SlkParse.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SlkString.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SlkString.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SlkToken.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SlkToken.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-SourceCodeScript.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-SourceCodeScript.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-StringFormat.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-StringFormat.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-Thread.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-Thread.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-acceptor.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-acceptor.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-base64.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-base64.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-calc.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-calc.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-connector.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-connector.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-exception.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-exception.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-main.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-main.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-netioservice.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-netioservice.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-tcp_session.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-tcp_session.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-tinystr.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-tinystr.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-tinyxml.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-tinyxml.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-tinyxmlerror.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-tinyxmlerror.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-tinyxmlparser.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-tinyxmlparser.Po -------------------------------------------------------------------------------- /ServerCenter/.deps/ServerCenter-util.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/.deps/ServerCenter-util.Po -------------------------------------------------------------------------------- /ServerCenter/Communication/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Communication/SessionManager.cpp -------------------------------------------------------------------------------- /ServerCenter/Communication/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Communication/SessionManager.h -------------------------------------------------------------------------------- /ServerCenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Makefile -------------------------------------------------------------------------------- /ServerCenter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Makefile.am -------------------------------------------------------------------------------- /ServerCenter/Makefile.common.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerCenter/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Makefile.gen -------------------------------------------------------------------------------- /ServerCenter/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/Makefile.in -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-ByteCode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-ByteCode.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-ByteCodeScript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-ByteCodeScript.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-Chain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-Chain.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-Hashtable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-Hashtable.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-Heap.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-MaintenanceScript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-MaintenanceScript.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-ObjectPool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-ObjectPool.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-RuntimeBuilderData.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-RuntimeBuilderData.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-ScriptThread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-ScriptThread.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SessionManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SessionManager.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SlkAction.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SlkAction.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SlkError.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SlkError.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SlkParse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SlkParse.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SlkString.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SlkString.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SlkToken.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SlkToken.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-SourceCodeScript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-SourceCodeScript.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-StringFormat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-StringFormat.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-Thread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-Thread.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-acceptor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-acceptor.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-base64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-base64.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-calc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-calc.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-connector.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-connector.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-exception.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-exception.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-main.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-netioservice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-netioservice.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-tcp_session.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-tcp_session.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-tinystr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-tinystr.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-tinyxml.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-tinyxml.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-tinyxmlerror.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-tinyxmlerror.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-tinyxmlparser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-tinyxmlparser.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter-util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter-util.o -------------------------------------------------------------------------------- /ServerCenter/ServerCenter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter.sln -------------------------------------------------------------------------------- /ServerCenter/ServerCenter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter.vcxproj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter.vcxproj.filters -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ByteCode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ByteCode.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ByteCodeScript.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ByteCodeScript.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/Chain.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/Chain.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/Hashtable.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/Hashtable.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/Heap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/Heap.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/MaintenanceScript.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/MaintenanceScript.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ObjectPool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ObjectPool.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ScriptThread.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ScriptThread.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ServerCenter.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ServerCenter.ilk -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/ServerCenter.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/ServerCenter.log -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SessionManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SessionManager.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SlkAction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SlkAction.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SlkError.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SlkError.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SlkParse.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SlkParse.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SlkString.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SlkString.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SlkToken.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SlkToken.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/SourceCodeScript.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/SourceCodeScript.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/StringFormat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/StringFormat.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/Thread.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/Thread.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/acceptor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/acceptor.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/base64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/base64.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/calc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/calc.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/connector.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/connector.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/exception.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/exception.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/main.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/netioservice.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/netioservice.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/tcp_session.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/tcp_session.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/tinystr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/tinystr.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/tinyxml.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/tinyxml.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/tinyxmlerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/tinyxmlerror.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/tinyxmlparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/tinyxmlparser.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/util.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/util.obj -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/vc143.idb -------------------------------------------------------------------------------- /ServerCenter/ServerCenter/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/ServerCenter/Debug/vc143.pdb -------------------------------------------------------------------------------- /ServerCenter/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/aclocal.m4 -------------------------------------------------------------------------------- /ServerCenter/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/autom4te.cache/output.0 -------------------------------------------------------------------------------- /ServerCenter/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/autom4te.cache/output.1 -------------------------------------------------------------------------------- /ServerCenter/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/autom4te.cache/requests -------------------------------------------------------------------------------- /ServerCenter/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /ServerCenter/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /ServerCenter/autoscan.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerCenter/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/compile -------------------------------------------------------------------------------- /ServerCenter/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/config.h -------------------------------------------------------------------------------- /ServerCenter/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/config.h.in -------------------------------------------------------------------------------- /ServerCenter/config.h.in~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/config.h.in~ -------------------------------------------------------------------------------- /ServerCenter/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/config.log -------------------------------------------------------------------------------- /ServerCenter/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/config.status -------------------------------------------------------------------------------- /ServerCenter/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/configure -------------------------------------------------------------------------------- /ServerCenter/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/configure.ac -------------------------------------------------------------------------------- /ServerCenter/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/configure.scan -------------------------------------------------------------------------------- /ServerCenter/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/depcomp -------------------------------------------------------------------------------- /ServerCenter/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/install-sh -------------------------------------------------------------------------------- /ServerCenter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/main.cpp -------------------------------------------------------------------------------- /ServerCenter/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/ServerCenter/missing -------------------------------------------------------------------------------- /ServerCenter/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /SessionInfo/SessionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/SessionInfo/SessionInfo.h -------------------------------------------------------------------------------- /bin64/AdminTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/AdminTool.exe -------------------------------------------------------------------------------- /bin64/CSharpCenterClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/CSharpCenterClient.dll -------------------------------------------------------------------------------- /bin64/CenterClientLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/CenterClientLibrary.dll -------------------------------------------------------------------------------- /bin64/CenterClientLibrary.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/CenterClientLibrary.lib -------------------------------------------------------------------------------- /bin64/CenterHubLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/CenterHubLibrary.dll -------------------------------------------------------------------------------- /bin64/CenterHubLibrary.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/CenterHubLibrary.lib -------------------------------------------------------------------------------- /bin64/ServerCenter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/ServerCenter.exe -------------------------------------------------------------------------------- /bin64/center_client.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/center_client.node -------------------------------------------------------------------------------- /bin64/node.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin64/node.exe -------------------------------------------------------------------------------- /bin_linux/AdminTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/AdminTool -------------------------------------------------------------------------------- /bin_linux/ServerCenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/ServerCenter -------------------------------------------------------------------------------- /bin_linux/center_client.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/center_client.node -------------------------------------------------------------------------------- /bin_linux/libCenterClientLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterClientLibrary.a -------------------------------------------------------------------------------- /bin_linux/libCenterClientLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterClientLibrary.la -------------------------------------------------------------------------------- /bin_linux/libCenterClientLibrary.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterClientLibrary.so.0.0.0 -------------------------------------------------------------------------------- /bin_linux/libCenterHubLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterHubLibrary.a -------------------------------------------------------------------------------- /bin_linux/libCenterHubLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterHubLibrary.la -------------------------------------------------------------------------------- /bin_linux/libCenterHubLibrary.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_linux/libCenterHubLibrary.so.0.0.0 -------------------------------------------------------------------------------- /bin_mac/AdminTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/AdminTool -------------------------------------------------------------------------------- /bin_mac/ServerCenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/ServerCenter -------------------------------------------------------------------------------- /bin_mac/center_client.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/center_client.node -------------------------------------------------------------------------------- /bin_mac/libCenterClientLibrary.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterClientLibrary.0.dylib -------------------------------------------------------------------------------- /bin_mac/libCenterClientLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterClientLibrary.a -------------------------------------------------------------------------------- /bin_mac/libCenterClientLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterClientLibrary.la -------------------------------------------------------------------------------- /bin_mac/libCenterHubLibrary.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterHubLibrary.0.dylib -------------------------------------------------------------------------------- /bin_mac/libCenterHubLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterHubLibrary.a -------------------------------------------------------------------------------- /bin_mac/libCenterHubLibrary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/bin_mac/libCenterHubLibrary.la -------------------------------------------------------------------------------- /compile_linux/admintool_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/admintool_configure.sed -------------------------------------------------------------------------------- /compile_linux/admintool_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/admintool_makefile.sed -------------------------------------------------------------------------------- /compile_linux/centerclient_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/centerclient_configure.sed -------------------------------------------------------------------------------- /compile_linux/centerclient_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/centerclient_makefile.sed -------------------------------------------------------------------------------- /compile_linux/centerhub_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/centerhub_configure.sed -------------------------------------------------------------------------------- /compile_linux/centerhub_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/centerhub_makefile.sed -------------------------------------------------------------------------------- /compile_linux/compile_centerclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/compile_centerclient.sh -------------------------------------------------------------------------------- /compile_linux/compile_centerhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/compile_centerhub.sh -------------------------------------------------------------------------------- /compile_linux/compile_servercenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/compile_servercenter.sh -------------------------------------------------------------------------------- /compile_linux/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/compiler -------------------------------------------------------------------------------- /compile_linux/convert.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/convert.scp -------------------------------------------------------------------------------- /compile_linux/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/readme.txt -------------------------------------------------------------------------------- /compile_linux/runscp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/runscp -------------------------------------------------------------------------------- /compile_linux/servercenter_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/servercenter_configure.sed -------------------------------------------------------------------------------- /compile_linux/servercenter_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_linux/servercenter_makefile.sed -------------------------------------------------------------------------------- /compile_mac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/.DS_Store -------------------------------------------------------------------------------- /compile_mac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/Makefile.am -------------------------------------------------------------------------------- /compile_mac/Makefile.common.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compile_mac/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/Makefile.gen -------------------------------------------------------------------------------- /compile_mac/admintool_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/admintool_configure.sed -------------------------------------------------------------------------------- /compile_mac/admintool_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/admintool_makefile.sed -------------------------------------------------------------------------------- /compile_mac/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autom4te.cache/output.0 -------------------------------------------------------------------------------- /compile_mac/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autom4te.cache/output.1 -------------------------------------------------------------------------------- /compile_mac/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autom4te.cache/requests -------------------------------------------------------------------------------- /compile_mac/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /compile_mac/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /compile_mac/autoscan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/autoscan.log -------------------------------------------------------------------------------- /compile_mac/centerclient_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/centerclient_configure.sed -------------------------------------------------------------------------------- /compile_mac/centerclient_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/centerclient_makefile.sed -------------------------------------------------------------------------------- /compile_mac/centerhub_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/centerhub_configure.sed -------------------------------------------------------------------------------- /compile_mac/centerhub_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/centerhub_makefile.sed -------------------------------------------------------------------------------- /compile_mac/compile_centerclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/compile_centerclient.sh -------------------------------------------------------------------------------- /compile_mac/compile_centerhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/compile_centerhub.sh -------------------------------------------------------------------------------- /compile_mac/compile_servercenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/compile_servercenter.sh -------------------------------------------------------------------------------- /compile_mac/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/compiler -------------------------------------------------------------------------------- /compile_mac/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/config.log -------------------------------------------------------------------------------- /compile_mac/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/config.status -------------------------------------------------------------------------------- /compile_mac/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/configure -------------------------------------------------------------------------------- /compile_mac/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/configure.ac -------------------------------------------------------------------------------- /compile_mac/configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/configure.scan -------------------------------------------------------------------------------- /compile_mac/convert.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/convert.scp -------------------------------------------------------------------------------- /compile_mac/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/depcomp -------------------------------------------------------------------------------- /compile_mac/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/readme.txt -------------------------------------------------------------------------------- /compile_mac/runscp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/runscp -------------------------------------------------------------------------------- /compile_mac/servercenter_configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/servercenter_configure.sed -------------------------------------------------------------------------------- /compile_mac/servercenter_makefile.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/compile_mac/servercenter_makefile.sed -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.clang-format -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.github/workflows/abi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.github/workflows/abi.yml -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.github/workflows/linux.yml -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.github/workflows/macos.yml -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.github/workflows/mingw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.github/workflows/mingw.yml -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.github/workflows/windows.yml -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.gitignore -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.mailmap -------------------------------------------------------------------------------- /libevent-2.1.12-stable/.uncrustify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/.uncrustify -------------------------------------------------------------------------------- /libevent-2.1.12-stable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/CMakeLists.txt -------------------------------------------------------------------------------- /libevent-2.1.12-stable/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/CONTRIBUTING.md -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ChangeLog -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ChangeLog-1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ChangeLog-1.4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ChangeLog-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ChangeLog-2.0 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/Doxyfile -------------------------------------------------------------------------------- /libevent-2.1.12-stable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/LICENSE -------------------------------------------------------------------------------- /libevent-2.1.12-stable/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/Makefile.am -------------------------------------------------------------------------------- /libevent-2.1.12-stable/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/Makefile.nmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/README.md -------------------------------------------------------------------------------- /libevent-2.1.12-stable/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/Vagrantfile -------------------------------------------------------------------------------- /libevent-2.1.12-stable/WIN32-Code/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/WIN32-Code/getopt.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/WIN32-Code/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/WIN32-Code/getopt.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/WIN32-Code/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/WIN32-Code/getopt_long.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/WIN32-Code/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/WIN32-Code/tree.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/arc4random.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/autogen.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/buffer.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/buffer_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/buffer_iocp.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_async.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_filter.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_openssl.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_pair.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_ratelim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_ratelim.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/bufferevent_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/bufferevent_sock.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/build32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/build32.bat -------------------------------------------------------------------------------- /libevent-2.1.12-stable/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/build64.bat -------------------------------------------------------------------------------- /libevent-2.1.12-stable/changelist-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/changelist-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/checkpatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/checkpatch.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/AddCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/AddCompilerFlags.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/AddEventLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/AddEventLibrary.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/CheckConstExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/CheckConstExists.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/CheckFileOffsetBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/CheckFileOffsetBits.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/CheckWorkingKqueue.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/CheckWorkingKqueue.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/Copyright.txt -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/LibeventConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/LibeventConfig.cmake.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/Macros.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/Uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/Uninstall.cmake.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/UseDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/UseDoxygen.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/cmake/VersionViaGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/cmake/VersionViaGit.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/compat/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/compat/sys/queue.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/configure.ac -------------------------------------------------------------------------------- /libevent-2.1.12-stable/defer-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/defer-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/devpoll.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/doxygen.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/doxygen.am -------------------------------------------------------------------------------- /libevent-2.1.12-stable/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/epoll.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/epoll_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/epoll_sub.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/epolltable-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/epolltable-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evbuffer-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evbuffer-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evconfig-private.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evconfig-private.h.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evconfig-private.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evconfig-private.h.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evdns.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evdns.3 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evdns.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event-config.h.cmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event.3 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event_iocp.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event_rpcgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event_rpcgen.py -------------------------------------------------------------------------------- /libevent-2.1.12-stable/event_tagging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/event_tagging.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evmap-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evmap-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evmap.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evport.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evrpc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evrpc-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evrpc.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evsignal-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evsignal-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evthread-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evthread-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evthread.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evthread_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evthread_pthread.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evthread_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evthread_win32.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evutil.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evutil_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evutil_rand.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/evutil_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/evutil_time.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/extra/abi-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/extra/abi-check/README.md -------------------------------------------------------------------------------- /libevent-2.1.12-stable/extra/abi-check/abi_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/extra/abi-check/abi_check.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/extra/abi-check/libevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/extra/abi-check/libevent.json -------------------------------------------------------------------------------- /libevent-2.1.12-stable/extra/lsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/extra/lsan.supp -------------------------------------------------------------------------------- /libevent-2.1.12-stable/extra/tsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/extra/tsan.supp -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ht-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ht-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/http-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/http-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/http.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/evdns.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/buffer.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/buffer_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/buffer_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/bufferevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/bufferevent.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/dns.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/dns_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/dns_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/dns_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/dns_struct.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/event.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/event_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/event_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/event_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/event_struct.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/http.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/http_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/http_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/http_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/http_struct.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/listener.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/rpc.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/rpc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/rpc_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/rpc_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/rpc_struct.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/tag.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/tag_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/tag_compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/thread.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/util.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/event2/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/event2/visibility.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/evhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/evhttp.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/evrpc.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/evutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/evutil.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/include.am -------------------------------------------------------------------------------- /libevent-2.1.12-stable/include/x64/evconfig-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/include/x64/evconfig-private.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/iocp-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/iocp-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ipv6-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ipv6-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/kqueue-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/kqueue-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/kqueue.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/libevent.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/libevent.pc.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/libevent_core.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/libevent_core.pc.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/libevent_extra.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/libevent_extra.pc.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/libevent_openssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/libevent_openssl.pc.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/libevent_pthreads.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/libevent_pthreads.pc.in -------------------------------------------------------------------------------- /libevent-2.1.12-stable/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/listener.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/log-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/log-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/log.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/ac_backport_259_ssizet.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/ac_backport_259_ssizet.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/ax_check_funcs_ex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/ax_check_funcs_ex.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/ax_prog_doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/ax_prog_doxygen.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/libevent_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/libevent_openssl.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/m4/ntp_pkg_config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/m4/ntp_pkg_config.m4 -------------------------------------------------------------------------------- /libevent-2.1.12-stable/make-event-config.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/make-event-config.sed -------------------------------------------------------------------------------- /libevent-2.1.12-stable/make_epoll_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/make_epoll_table.py -------------------------------------------------------------------------------- /libevent-2.1.12-stable/minheap-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/minheap-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/mm-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/mm-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/openssl-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/openssl-compat.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/poll.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/ratelim-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/ratelim-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/dns-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/dns-example.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/event-read-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/event-read-fifo.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/hello-world.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/hostcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/hostcheck.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/hostcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/hostcheck.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/http-connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/http-connect.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/http-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/http-server.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/https-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/https-client.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/include.am -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/le-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/le-proxy.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/signal-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/signal-test.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/sample/time-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/sample/time-test.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/select.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/signal.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/strlcpy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/strlcpy-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/strlcpy.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test-export/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test-export/CMakeLists.txt -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test-export/test-export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test-export/test-export.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test-export/test-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test-export/test-export.py -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/Makefile.nmake -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/bench.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/bench_cascade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/bench_cascade.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/bench_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/bench_http.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/bench_httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/bench_httpclient.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/check-dumpevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/check-dumpevents.py -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/include.am -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/print-winsock-errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/print-winsock-errors.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress.rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress.rpc -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_buffer.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_bufferevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_bufferevent.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_dns.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_et.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_et.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_finalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_finalize.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_http.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_iocp.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_listener.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_main.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_minheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_minheap.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_rpc.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_ssl.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_testutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_testutils.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_testutils.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_thread.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_thread.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_util.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/regress_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/regress_zlib.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/rpcgen_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/rpcgen_wrapper.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-changelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-changelist.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-closed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-closed.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-dumpevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-dumpevents.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-eof.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-fdleak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-fdleak.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-init.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-ratelim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-ratelim.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-ratelim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-ratelim.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-time.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test-weof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test-weof.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/test.sh -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/tinytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/tinytest.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/tinytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/tinytest.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/tinytest_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/tinytest_demo.c -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/tinytest_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/tinytest_local.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/test/tinytest_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/test/tinytest_macros.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/time-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/time-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/util-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/util-internal.h -------------------------------------------------------------------------------- /libevent-2.1.12-stable/whatsnew-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/whatsnew-2.0.txt -------------------------------------------------------------------------------- /libevent-2.1.12-stable/whatsnew-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/whatsnew-2.1.txt -------------------------------------------------------------------------------- /libevent-2.1.12-stable/win32select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/libevent-2.1.12-stable/win32select.c -------------------------------------------------------------------------------- /node_center_client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/.DS_Store -------------------------------------------------------------------------------- /node_center_client/CenterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/CenterClient.h -------------------------------------------------------------------------------- /node_center_client/CenterClientLibrary.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/CenterClientLibrary.lib -------------------------------------------------------------------------------- /node_center_client/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/Readme.txt -------------------------------------------------------------------------------- /node_center_client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/app.js -------------------------------------------------------------------------------- /node_center_client/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/binding.gyp -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.exp -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.iobj -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.ipdb -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.lib -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.node -------------------------------------------------------------------------------- /node_center_client/build/Release/center_client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/center_client.pdb -------------------------------------------------------------------------------- /node_center_client/build/Release/nothing.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/Release/nothing.lib -------------------------------------------------------------------------------- /node_center_client/build/binding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/binding.sln -------------------------------------------------------------------------------- /node_center_client/build/center_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/center_client.vcxproj -------------------------------------------------------------------------------- /node_center_client/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/build/config.gypi -------------------------------------------------------------------------------- /node_center_client/kfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/kfifo.h -------------------------------------------------------------------------------- /node_center_client/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/main.cc -------------------------------------------------------------------------------- /node_center_client/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/node_modules/.package-lock.json -------------------------------------------------------------------------------- /node_center_client/node_modules/node-addon-api/napi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/node_modules/node-addon-api/napi.h -------------------------------------------------------------------------------- /node_center_client/node_modules/node-addon-api/nothing.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_center_client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/package-lock.json -------------------------------------------------------------------------------- /node_center_client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/ServerPlatform/HEAD/node_center_client/package.json --------------------------------------------------------------------------------