├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Build ├── Linux │ ├── ConsoleCommand.xml │ ├── CppUnitTest.ini │ ├── FileTest │ │ └── 1.txt │ ├── FileTestCfg.xml │ ├── FileWatch.xml │ ├── LoginBufferFile │ │ ├── UserLogin.txt │ │ └── UserValid.txt │ ├── LuaScript │ │ ├── LuaTest.lua │ │ └── RoomLogic.lua │ ├── Makefile.in │ ├── Timer.xml │ ├── alert.xml │ ├── configure │ ├── forbiddenIP.xml │ ├── forward.xml │ ├── killp │ ├── logger.xml │ ├── main.xml │ ├── makefile.mpc │ ├── makegcov.mpc │ ├── pss.mwc │ ├── psssonar.mwc │ ├── reports │ │ └── cppunit │ │ │ └── report.xml │ ├── runlinuxmpc.sh │ ├── runpss.sh │ ├── valgrind-deadlock.run │ ├── valgrind-efc.run │ ├── valgrind-mem.run │ └── valgrind.run └── Windows │ ├── ConsoleCommand.xml │ ├── FileTest │ └── 1.txt │ ├── FileTestCfg.xml │ ├── FileWatch.xml │ ├── ListServer_LS.ini │ ├── LoginBufferFile │ ├── UserLogin.txt │ └── UserValid.txt │ ├── LuaScript │ ├── LuaTest.lua │ └── RoomLogic.lua │ ├── Timer.xml │ ├── alert.xml │ ├── forbiddenIP.xml │ ├── forward.xml │ ├── logger.xml │ └── main.xml ├── Build_Windows.bat ├── CMakeLists.txt ├── CppUnitTest └── Test │ ├── commons.h │ ├── makefile │ ├── makefile.define │ ├── test_linux.cpp │ ├── testcase.cpp │ └── testcase.h ├── Doc ├── China │ ├── Changelog.md │ ├── Configure.md │ ├── Dyeing.md │ ├── Install.md │ ├── LogicPlugin.md │ ├── PSSFrameCommand.md │ ├── PSSPluginAPI.md │ ├── PacketParsePlugin.md │ ├── PluginMake.md │ └── examples.md └── English │ ├── Configure.md │ ├── Dyeing.md │ ├── Install.md │ ├── LogicPlugin.md │ ├── PSSFrameCommand.md │ ├── PacketParsePlugin.md │ ├── PluginMake.md │ └── examples.md ├── Icon.jpg ├── LICENSE ├── PluginMaker └── XML2CPP │ ├── XML2CPP.sln │ └── XML2CPP │ ├── Common.h │ ├── Conf │ ├── DataStruct.xml │ └── PlugInInfo.xml │ ├── Makefile │ ├── Makefile.define │ ├── ParseCAPIFile.cpp │ ├── ParseCAPIFile.h │ ├── TinyXML │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp │ ├── Write_Packet_Parse_cpp.h │ ├── Write_Plugin_Command.h │ ├── Write_Plugin_Logic.h │ ├── Write_Plugin_Main_cpp.h │ ├── Write_Plugin_Make.h │ ├── XML2CPP.cpp │ ├── XML2CPP.vcproj │ ├── XML2CPP.vcxproj │ ├── XmlOpeation.cpp │ └── XmlOpeation.h ├── Project └── Run.bat ├── PssSampleClient ├── AutoTestClient │ ├── AutoTestClient.sln │ └── AutoTestClient │ │ ├── AutoTestClient.cpp │ │ ├── AutoTestClient.vcxproj │ │ ├── Common.h │ │ ├── TcpSocketClient.cpp │ │ ├── TcpSocketClient.h │ │ ├── TinyXML │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ │ ├── XmlOpeation.cpp │ │ └── XmlOpeation.h ├── CommonTCPClient │ ├── CommonTCPClient.sln │ ├── CommonTCPClient │ │ ├── CommonTCPClient.cpp │ │ ├── CommonTCPClient.h │ │ ├── CommonTCPClient.vcproj │ │ ├── ReadMe.txt │ │ ├── TpClientManager.cpp │ │ ├── TpClientManager.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── CommonTcpTest │ │ ├── CommonTcpTest.cpp │ │ ├── CommonTcpTest.vcproj │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── PSSFtpClient │ ├── PssFtpClient.sln │ └── PssFtpClient │ │ ├── PssFtpClient.cpp │ │ ├── PssFtpClient.h │ │ ├── PssFtpClient.rc │ │ ├── PssFtpClient.vcproj │ │ ├── PssFtpClient.vcxproj │ │ ├── PssFtpClientDlg.cpp │ │ ├── PssFtpClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ ├── PssFtpClient.ico │ │ └── PssFtpClient.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── PSSHttp │ ├── HttpGet.html │ └── HttpPost.html ├── PSSLoginClient │ ├── LoginClient.sln │ └── LoginClient │ │ ├── LoginClient.cpp │ │ ├── LoginClient.h │ │ ├── LoginClient.rc │ │ ├── LoginClient.vcproj │ │ ├── LoginClientDlg.cpp │ │ ├── LoginClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ ├── LoginClient.ico │ │ └── LoginClient.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── PSSPlugClient │ ├── PlugClient.sln │ └── PlugClient │ │ ├── PlugClient.cpp │ │ ├── PlugClient.h │ │ ├── PlugClient.rc │ │ ├── PlugClient.vcproj │ │ ├── PlugClient.vcxproj │ │ ├── PlugClientDlg.cpp │ │ ├── PlugClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ ├── PlugClient.ico │ │ └── PlugClient.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── PSSProxyClient │ ├── PSSProxyClient.sln │ └── PSSProxyClient │ │ ├── PSSProxyClient.cpp │ │ ├── PSSProxyClient.h │ │ ├── PSSProxyClient.rc │ │ ├── PSSProxyClient.vcproj │ │ ├── PSSProxyClientDlg.cpp │ │ ├── PSSProxyClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ ├── PSSProxyClient.ico │ │ └── PSSProxyClient.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── PSSWebsocket │ ├── websockettest.html │ └── websockettest[切包].html ├── README.md ├── README_Chinese.md ├── TestNetworkTool ├── PSS_ClientManager │ ├── Main.jpg │ ├── PSS_ClientManager.sln │ ├── PSS_ClientManager │ │ ├── ClientDefine.h │ │ ├── DlgClientConnect.cpp │ │ ├── DlgClientConnect.h │ │ ├── DlgClientConnectM.cpp │ │ ├── DlgClientConnectM.h │ │ ├── DlgClientMain.cpp │ │ ├── DlgClientMain.h │ │ ├── DlgClientModule.cpp │ │ ├── DlgClientModule.h │ │ ├── DlgClientModule.htm │ │ ├── DlgClientWorkThread.cpp │ │ ├── DlgClientWorkThread.h │ │ ├── DlgForbidenIP.cpp │ │ ├── DlgForbidenIP.h │ │ ├── DlgServerConnect.cpp │ │ ├── DlgServerConnect.h │ │ ├── DlgTrackIP.cpp │ │ ├── DlgTrackIP.h │ │ ├── DlgWorkThreadAI.cpp │ │ ├── DlgWorkThreadAI.h │ │ ├── PSS_ClientManager.cpp │ │ ├── PSS_ClientManager.h │ │ ├── PSS_ClientManager.rc │ │ ├── PSS_ClientManager.vcproj │ │ ├── PSS_ClientManager.vcxproj │ │ ├── PSS_ClientManagerDlg.cpp │ │ ├── PSS_ClientManagerDlg.h │ │ ├── ReadMe.txt │ │ ├── TcpClientConnect.cpp │ │ ├── TcpClientConnect.h │ │ ├── Windows_Bin │ │ │ ├── CheckServer.xml │ │ │ └── Config.xml │ │ ├── XML │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── XmlOpeation.cpp │ │ ├── XmlOpeation.h │ │ ├── res │ │ │ ├── PSS_ClientManager.ico │ │ │ └── PSS_ClientManager.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Readme.md │ └── 先读我.txt ├── PSS_ClientManager_wx │ ├── PSS_ClientManagerApp.cpp │ ├── PSS_ClientManagerApp.h │ ├── PSS_ClientManagerMain.cpp │ ├── PSS_ClientManagerMain.h │ ├── PSS_ClientManager_wx.ico │ ├── PSS_ClientManager_wx.sln │ ├── PSS_ClientManager_wx.vcxproj │ ├── PSS_ClientManager_wx.vcxproj.filters │ ├── PSS_ClientManager_wx.vcxproj.user │ ├── bin │ │ ├── CheckServer.xml │ │ └── Config.xml │ ├── clientdefine.h │ ├── small.ico │ └── wxsmith │ │ └── PSS_ClientManagerframe.wxs ├── PassTCP │ ├── .vs │ │ └── PassTCP │ │ │ └── v15 │ │ │ ├── Solution.VC.db-shm │ │ │ └── Solution.VC.db-wal │ ├── LuaLib │ │ ├── Lua.vcproj │ │ ├── Lua.vcproj.8.00.old │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ ├── print.c │ │ ├── tolua++.h │ │ ├── tolua.c │ │ ├── tolua_event.c │ │ ├── tolua_event.h │ │ ├── tolua_is.c │ │ ├── tolua_map.c │ │ ├── tolua_push.c │ │ ├── tolua_to.c │ │ ├── toluabind.c │ │ └── toluabind.h │ ├── Main.jpg │ ├── PassTCP.sln │ ├── PassTCP │ │ ├── ClientTcpSocket.cpp │ │ ├── ClientTcpSocket.h │ │ ├── ClientUdpSocket.cpp │ │ ├── ClientUdpSocket.h │ │ ├── Lua │ │ │ ├── LuaDefine.h │ │ │ ├── LuaFn.cpp │ │ │ ├── LuaFn.h │ │ │ ├── LuaFnRegister.h │ │ │ ├── LuaFn_Tcp.h │ │ │ └── ParamData.h │ │ ├── PacketDlg.cpp │ │ ├── PacketDlg.h │ │ ├── PassTCP.cpp │ │ ├── PassTCP.h │ │ ├── PassTCP.rc │ │ ├── PassTCP.vcproj │ │ ├── PassTCP.vcxproj │ │ ├── PassTCPDlg.cpp │ │ ├── PassTCPDlg.h │ │ ├── ReadMe.txt │ │ ├── TinyXML │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── Windows_bin │ │ │ └── PassTcp.lua │ │ ├── define.h │ │ ├── pss测试包.txt │ │ ├── res │ │ │ ├── PassTCP.ico │ │ │ └── PassTCP.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ └── 先读我.txt │ ├── Readme.md │ ├── pss测试包.txt │ └── 先读我.txt └── PassTCP_wx │ ├── ClientTcpSocket.cpp │ ├── ClientTcpSocket.h │ ├── ClientUdpSocket.cpp │ ├── ClientUdpSocket.h │ ├── PacketDlg.cpp │ ├── PacketDlg.h │ ├── PassTCPApp.cpp │ ├── PassTCPApp.h │ ├── PassTCPDlg.cpp │ ├── PassTCPDlg.h │ ├── PassTCP_wx.sln │ ├── PassTCP_wx.vcxproj │ ├── PassTCP_wx.vcxproj.filters │ ├── PassTCP_wx.vcxproj.user │ ├── bin │ └── PassTcp.lua │ ├── define.h │ └── wxsmith │ ├── CPacketDlg.wxs │ └── CPassTCPDlg.wxs ├── ThirdLib ├── include │ ├── Common.h │ ├── EncodeConvert │ │ ├── GBKtoUTF8.cpp │ │ ├── GBKtoUTF8.h │ │ └── GBKtoUTF8.inl │ ├── Lua │ │ ├── LuaDefine.h │ │ ├── LuaFn.cpp │ │ ├── LuaFn.h │ │ ├── LuaFnRegister.h │ │ ├── LuaFn_Tcp.h │ │ └── ParamData.h │ ├── TcpSocketClient.cpp │ ├── TcpSocketClient.h │ ├── TinyXML │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── XmlOpeation.cpp │ └── XmlOpeation.h ├── src │ ├── TcpClientConnect.cpp │ └── TcpClientConnect.h └── thirdparty │ ├── LuaLib │ ├── Lua.vcproj │ ├── Lua.vcproj.8.00.old │ ├── Makefile │ ├── ReadMe.txt │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ ├── print.c │ ├── tolua++.h │ ├── tolua_event.c │ ├── tolua_event.h │ ├── tolua_is.c │ ├── tolua_map.c │ ├── tolua_push.c │ ├── tolua_to.c │ ├── toluabind.c │ └── toluabind.h │ ├── macro.h │ ├── sock_wrap.cpp │ └── sock_wrap.h ├── ToDo.md ├── package.json ├── purenessscopeserver ├── CMakeLists.txt ├── Common │ ├── ClientCommand.h │ ├── ClientMessage.h │ ├── ClientUDPMassage.h │ ├── ConvertBuffer.h │ ├── CreateInfo.h │ ├── Echartlog.cpp │ ├── Echartlog.h │ ├── HashTable.h │ ├── HtmlPraseDoc.h │ ├── IBuffPacket.h │ ├── ICheckPacket.h │ ├── IClientManager.h │ ├── IClientParse.h │ ├── IConnectManager.h │ ├── IControlListen.h │ ├── IEchartlog.h │ ├── IFrameCommand.h │ ├── ILogManager.h │ ├── ILogObject.h │ ├── ILogicQueue.hpp │ ├── IMessage.h │ ├── IMessageBlockManager.h │ ├── IMessageManager.h │ ├── IModuleInfo.h │ ├── IModuleMessageManager.h │ ├── IObject.h │ ├── IPacketManager.h │ ├── IPacketParse.h │ ├── ISendCacheManager.h │ ├── IServerManager.h │ ├── ITTyClientManager.h │ ├── ITTyMessage.h │ ├── IpCheck.h │ ├── Lcm.h │ ├── LoadLibrary.hpp │ ├── ObjectArrayList.h │ ├── ObjectLru.h │ ├── ObjectPoolManager.h │ ├── Object_Pool.hpp │ ├── PerformanceCounter.cpp │ ├── PerformanceCounter.h │ ├── ProfileTime.h │ ├── RandomNumber.hpp │ ├── TSCommon.hpp │ ├── ThreadLock.h │ ├── ThreadQueue.h │ ├── Threading.hpp │ ├── TimeStamp.hpp │ ├── TimeWheelLink.h │ ├── TimerManager.hpp │ ├── Trace.h │ ├── consoleoutput.hpp │ ├── date.h │ ├── define.h │ ├── singleton.h │ ├── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── cfg │ │ │ ├── argv.h │ │ │ ├── env.h │ │ │ ├── helpers-inl.h │ │ │ └── helpers.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ │ ├── backtracer-inl.h │ │ │ ├── backtracer.h │ │ │ ├── circular_q.h │ │ │ ├── console_globals.h │ │ │ ├── file_helper-inl.h │ │ │ ├── file_helper.h │ │ │ ├── fmt_helper.h │ │ │ ├── log_msg-inl.h │ │ │ ├── log_msg.h │ │ │ ├── log_msg_buffer-inl.h │ │ │ ├── log_msg_buffer.h │ │ │ ├── mpmc_blocking_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os-inl.h │ │ │ ├── os.h │ │ │ ├── periodic_worker-inl.h │ │ │ ├── periodic_worker.h │ │ │ ├── registry-inl.h │ │ │ ├── registry.h │ │ │ ├── synchronous_factory.h │ │ │ ├── tcp_client-windows.h │ │ │ ├── tcp_client.h │ │ │ ├── thread_pool-inl.h │ │ │ ├── thread_pool.h │ │ │ └── windows_include.h │ │ ├── fmt │ │ │ ├── bin_to_hex.h │ │ │ ├── bundled │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── chrono.h │ │ │ │ ├── color.h │ │ │ │ ├── compile.h │ │ │ │ ├── core.h │ │ │ │ ├── format-inl.h │ │ │ │ ├── format.h │ │ │ │ ├── locale.h │ │ │ │ ├── os.h │ │ │ │ ├── ostream.h │ │ │ │ ├── posix.h │ │ │ │ ├── printf.h │ │ │ │ └── ranges.h │ │ │ ├── chrono.h │ │ │ ├── fmt.h │ │ │ └── ostr.h │ │ ├── formatter.h │ │ ├── fwd.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink-inl.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink-inl.h │ │ │ ├── base_sink.h │ │ │ ├── basic_file_sink-inl.h │ │ │ ├── basic_file_sink.h │ │ │ ├── daily_file_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── dup_filter_sink.h │ │ │ ├── hourly_file_sink.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── ringbuffer_sink.h │ │ │ ├── rotating_file_sink-inl.h │ │ │ ├── rotating_file_sink.h │ │ │ ├── sink-inl.h │ │ │ ├── sink.h │ │ │ ├── stdout_color_sinks-inl.h │ │ │ ├── stdout_color_sinks.h │ │ │ ├── stdout_sinks-inl.h │ │ │ ├── stdout_sinks.h │ │ │ ├── syslog_sink.h │ │ │ ├── systemd_sink.h │ │ │ ├── tcp_sink.h │ │ │ ├── win_eventlog_sink.h │ │ │ ├── wincolor_sink-inl.h │ │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── stopwatch.h │ │ ├── tweakme.h │ │ └── version.h │ └── tms.hpp ├── FrameCore │ ├── Common │ │ ├── BaseClientConnectManager.cpp │ │ ├── BaseClientConnectManager.h │ │ ├── BaseConnectClient.cpp │ │ ├── BaseConnectClient.h │ │ ├── BaseConsoleHandle.cpp │ │ ├── BaseConsoleHandle.h │ │ ├── BaseHander.cpp │ │ ├── BaseHander.h │ │ ├── BaseServerManager.cpp │ │ ├── BaseServerManager.h │ │ ├── BaseTask.cpp │ │ ├── BaseTask.h │ │ ├── BuffPacket.cpp │ │ ├── BuffPacket.h │ │ ├── BuffPacketManager.cpp │ │ ├── BuffPacketManager.h │ │ ├── CommandAccount.cpp │ │ ├── CommandAccount.h │ │ ├── ConnectCounter.cpp │ │ ├── ConnectCounter.h │ │ ├── Fast_Asynch_Read_Stream.h │ │ ├── ForbiddenIP.cpp │ │ ├── ForbiddenIP.h │ │ ├── IHandler.h │ │ ├── IPAccount.cpp │ │ ├── IPAccount.h │ │ ├── LinuxCPU.cpp │ │ ├── LinuxCPU.h │ │ ├── MakePacket.cpp │ │ ├── MakePacket.h │ │ ├── MakePacket_Common.h │ │ ├── MessageBlockManager.cpp │ │ ├── MessageBlockManager.h │ │ ├── MyACELoggingStrategy.cpp │ │ ├── MyACELoggingStrategy.h │ │ ├── ProfileTime.cpp │ │ ├── Ring.h │ │ ├── SendMessage.cpp │ │ ├── SendMessage.h │ │ ├── TcpRedirection.cpp │ │ ├── TcpRedirection.h │ │ ├── ThreadInfo.cpp │ │ ├── ThreadInfo.h │ │ ├── WindowsCPU.cpp │ │ ├── WindowsCPU.h │ │ ├── WindowsDump.h │ │ ├── XmlConfig.cpp │ │ ├── XmlConfig.h │ │ ├── XmlOpeation.cpp │ │ └── XmlOpeation.h │ ├── Console │ │ ├── ConsoleMessage.cpp │ │ ├── ConsoleMessage.h │ │ ├── ConsolePromiss.cpp │ │ ├── ConsolePromiss.h │ │ ├── FrameCommand.cpp │ │ ├── FrameCommand.h │ │ ├── MessageDefine.cpp │ │ ├── MessageDefine.h │ │ ├── MessageDispose.cpp │ │ └── MessageDispose.h │ ├── CppUnit │ │ ├── CppUnitMain.cpp │ │ ├── CppUnitMain.h │ │ ├── PostServerMessage.h │ │ ├── PostUdpServerMessage.h │ │ ├── Uint_AceReactorManager.cpp │ │ ├── Uint_AceReactorManager.h │ │ ├── Uint_ConnectClient.cpp │ │ ├── Uint_ConnectClient.h │ │ ├── Uint_ConnectHandler.cpp │ │ ├── Uint_ConnectHandler.h │ │ ├── Uint_ConsoleMessage.cpp │ │ ├── Uint_ConsoleMessage.h │ │ ├── Uint_ConsolePromissions.cpp │ │ ├── Uint_ConsolePromissions.h │ │ ├── Uint_LogManager.cpp │ │ ├── Uint_LogManager.h │ │ ├── Uint_MessageService.cpp │ │ ├── Uint_MessageService.h │ │ ├── Uint_PacketParse.cpp │ │ ├── Uint_PacketParse.h │ │ ├── Uint_Proformancecount.cpp │ │ ├── Uint_Proformancecount.h │ │ ├── Uint_ServerMessageInfoPool.cpp │ │ ├── Uint_ServerMessageInfoPool.h │ │ ├── Uint_ServerMessageManager.cpp │ │ ├── Uint_ServerMessageManager.h │ │ ├── Uint_TcpRedirection.cpp │ │ ├── Uint_TcpRedirection.h │ │ ├── Uint_ThreadInfo.cpp │ │ ├── Uint_ThreadInfo.h │ │ ├── Unit_Aes.cpp │ │ ├── Unit_Aes.h │ │ ├── Unit_BaseConnectClient.cpp │ │ ├── Unit_BaseConnectClient.h │ │ ├── Unit_BaseHandler.cpp │ │ ├── Unit_BaseHandler.h │ │ ├── Unit_BuffPacket.cpp │ │ ├── Unit_BuffPacket.h │ │ ├── Unit_CommandAccount.cpp │ │ ├── Unit_CommandAccount.h │ │ ├── Unit_Common.h │ │ ├── Unit_ConnectTcp.cpp │ │ ├── Unit_ConnectTcp.h │ │ ├── Unit_ConnectUdp.cpp │ │ ├── Unit_ConnectUdp.h │ │ ├── Unit_ControlListen.cpp │ │ ├── Unit_ControlListen.h │ │ ├── Unit_EChartlog.cpp │ │ ├── Unit_EChartlog.h │ │ ├── Unit_FileLog.cpp │ │ ├── Unit_FileLog.h │ │ ├── Unit_FileTestManager.cpp │ │ ├── Unit_FileTestManager.h │ │ ├── Unit_ForbiddenIP.cpp │ │ ├── Unit_ForbiddenIP.h │ │ ├── Unit_FrameCommand.cpp │ │ ├── Unit_FrameCommand.h │ │ ├── Unit_IPAccount.cpp │ │ ├── Unit_IPAccount.h │ │ ├── Unit_LoadModule.cpp │ │ ├── Unit_LoadModule.h │ │ ├── Unit_MakePacket.cpp │ │ ├── Unit_MakePacket.h │ │ ├── Unit_MessageDefine.cpp │ │ ├── Unit_MessageDefine.h │ │ ├── Unit_MessageDyeingManager.cpp │ │ ├── Unit_MessageDyeingManager.h │ │ ├── Unit_ModuleMessageManager.cpp │ │ ├── Unit_ModuleMessageManager.h │ │ ├── Unit_ProfileTime.cpp │ │ ├── Unit_ProfileTime.h │ │ ├── Unit_TTyClientManager.cpp │ │ ├── Unit_TTyClientManager.h │ │ ├── Unit_TimeQueue.cpp │ │ ├── Unit_TimeQueue.h │ │ ├── Unit_WorkThreadAI.cpp │ │ └── Unit_WorkThreadAI.h │ ├── Encrypt │ │ ├── Aes.cpp │ │ └── Aes.h │ ├── FileTest │ │ ├── FileTest.h │ │ ├── FileTestManager.cpp │ │ └── FileTestManager.h │ ├── Lib │ │ ├── PacketParsed.exp │ │ └── PacketParsed.lib │ ├── LogSystem │ │ ├── FileLogger.cpp │ │ ├── FileLogger.h │ │ ├── LogManager.cpp │ │ └── LogManager.h │ ├── Mail │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── smtps.cpp │ │ └── smtps.h │ ├── Message │ │ ├── HandlerManager.cpp │ │ ├── HandlerManager.h │ │ ├── LoadModule.cpp │ │ ├── LoadModule.h │ │ ├── LoadPacketParse.cpp │ │ ├── LoadPacketParse.h │ │ ├── Message.cpp │ │ ├── Message.h │ │ ├── MessageDyeingManager.cpp │ │ ├── MessageDyeingManager.h │ │ ├── MessageManager.cpp │ │ ├── MessageManager.h │ │ ├── MessageService.cpp │ │ ├── MessageService.h │ │ ├── ModuleMessageManager.cpp │ │ ├── ModuleMessageManager.h │ │ ├── WorkThreadAI.cpp │ │ └── WorkThreadAI.h │ ├── PSS_vc2019.vcxproj │ ├── PSS_vc2019.vcxproj.filters │ ├── PSS_vc2019.vcxproj.user │ ├── PacketParse │ │ ├── PacketConsoleParse.cpp │ │ ├── PacketConsoleParse.h │ │ ├── PacketParse.cpp │ │ ├── PacketParse.h │ │ ├── PacketParseBase.cpp │ │ └── PacketParseBase.h │ ├── Proactor │ │ ├── AceProactorManager.cpp │ │ ├── AceProactorManager.h │ │ ├── ClientProConnectManager.cpp │ │ ├── ClientProConnectManager.h │ │ ├── ProAsynchConnect.cpp │ │ ├── ProAsynchConnect.h │ │ ├── ProConnectAccept.cpp │ │ ├── ProConnectAccept.h │ │ ├── ProConnectClient.cpp │ │ ├── ProConnectClient.h │ │ ├── ProConnectHandler.cpp │ │ ├── ProConnectHandler.h │ │ ├── ProConsoleAccept.cpp │ │ ├── ProConsoleAccept.h │ │ ├── ProConsoleHandle.cpp │ │ ├── ProConsoleHandle.h │ │ ├── ProControlListen.cpp │ │ ├── ProControlListen.h │ │ ├── ProServerManager.cpp │ │ ├── ProServerManager.h │ │ ├── ProSigHandle.cpp │ │ ├── ProSigHandle.h │ │ ├── ProTTyClientManager.cpp │ │ ├── ProTTyClientManager.h │ │ ├── ProTTyHandler.cpp │ │ └── ProTTyHandler.h │ ├── PurenessScopeServer.cpp │ ├── PurenessScopeServer.vcproj │ ├── Reactor │ │ ├── AceReactorManager.cpp │ │ ├── AceReactorManager.h │ │ ├── ClientReConnectManager.cpp │ │ ├── ClientReConnectManager.h │ │ ├── ConnectAccept.cpp │ │ ├── ConnectAccept.h │ │ ├── ConnectClient.cpp │ │ ├── ConnectClient.h │ │ ├── ConnectHandler.cpp │ │ ├── ConnectHandler.h │ │ ├── ConsoleAccept.cpp │ │ ├── ConsoleAccept.h │ │ ├── ConsoleHandler.cpp │ │ ├── ConsoleHandler.h │ │ ├── ControlListen.cpp │ │ ├── ControlListen.h │ │ ├── ReTTyClientManager.cpp │ │ ├── ReTTyClientManager.h │ │ ├── ReTTyHandler.cpp │ │ ├── ReTTyHandler.h │ │ ├── ServerManager.cpp │ │ ├── ServerManager.h │ │ ├── WaitQuitSignal.cpp │ │ └── WaitQuitSignal.h │ ├── ReadMe.txt │ ├── TinyXML │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── UDP │ │ ├── ProactorUDPClient.cpp │ │ ├── ProactorUDPClient.h │ │ ├── ProactorUDPHandler.cpp │ │ ├── ProactorUDPHandler.h │ │ ├── ReactorUDPClient.cpp │ │ ├── ReactorUDPClient.h │ │ ├── ReactorUDPHander.cpp │ │ ├── ReactorUDPHander.h │ │ ├── UDPConnectManager.cpp │ │ └── UDPConnectManager.h │ ├── resource.h │ └── sonar-project.properties ├── PSS_vc2019.sln ├── PacketParse_Interface │ ├── IMessageBlockManager.h │ ├── PacketParse_Interface.cpp │ ├── PacketParse_Interface.mpc │ ├── PacketParse_Interface.vcproj │ ├── PacketParse_VS2019.sln │ ├── PacketParse_VS2019.vcxproj │ ├── PacketParse_VS2019.vcxproj.filters │ └── runlinuxmake.sh ├── PacketParse_Interface_Http │ ├── HttpInfo.h │ ├── IMessageBlockManager.h │ ├── Makefile.mpc │ ├── PacketParse_Interface_Http.cpp │ ├── PacketParse_VS2015_Http.sln │ ├── PacketParse_VS2015_Http.vcxproj │ ├── PacketParse_VS2015_Http.vcxproj.filters │ ├── PacketParse_VS2017_Http.sln │ ├── PacketParse_VS2017_Http.vcxproj │ ├── PacketParse_VS2017_Http.vcxproj.filters │ ├── ReadMe.txt │ └── runlinuxmake.sh ├── PacketParse_Interface_Monitor │ ├── IMessageBlockManager.h │ ├── PacketParse_Interface_Monitor.cpp │ ├── PacketParse_Interface_Monitor.mpc │ ├── PacketParse_Interface_Monitor.vcproj │ └── runlinuxmake.sh ├── PacketParse_Interface_WebSocket │ ├── IMessageBlockManager.h │ ├── PacketParse_Interface.cpp │ ├── PacketParse_Interface.mpc │ ├── PacketParse_Interface.vcproj │ ├── PacketParse_VS2015_WebSocket.sln │ ├── PacketParse_VS2015_WebSocket.vcxproj │ ├── PacketParse_VS2015_WebSocket.vcxproj.filters │ ├── PacketParse_VS2017_WebSocket.sln │ ├── PacketParse_VS2017_WebSocket.vcxproj │ ├── PacketParse_VS2017_WebSocket.vcxproj.filters │ ├── WebSocketInfo.h │ └── runlinuxmake.sh └── example-Module │ ├── AutoTest │ ├── AutoTest.cpp │ ├── AutoTest.mpc │ ├── AutoTest.sln │ ├── AutoTest.vcproj │ ├── AutoTest.vcxproj │ ├── AutoTest.vcxproj.filters │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── FtpTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── DirView.cpp │ ├── DirView.h │ ├── FtpTest.cpp │ ├── FtpTest.mpc │ ├── FtpTest.sln │ ├── FtpTest.vcproj │ ├── FtpTest.vcxproj │ ├── FtpTest.vcxproj.filters │ ├── Makefile │ ├── Makefile.define │ ├── ReadMe.txt │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── Http │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Http.sln │ ├── HttpTest.cpp │ ├── HttpTest.mpc │ ├── HttpTest.vcproj │ ├── HttpTest.vcxproj │ ├── HttpTest.vcxproj.filters │ ├── Makefile │ ├── Makefile.define │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── KafkaClient │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── KafkaClient.cpp │ ├── KafkaClient.h │ ├── kafkaTest.cpp │ ├── kafkaTest.mpc │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── LGLogic │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── IniRead │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── iniparser.c │ │ └── iniparser.h │ ├── LGLogic.cpp │ ├── LGLogic.mpc │ ├── LGLogic.sln │ ├── LGLogic.vcproj │ ├── LGLogic.vcxproj │ ├── LGLogic.vcxproj.filters │ ├── LGLogicd.exp │ ├── LSServer.ini │ ├── LSServerManager.cpp │ ├── LSServerManager.h │ ├── ListManager.cpp │ ├── ListManager.h │ ├── Makefile │ ├── Makefile.define │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── LoginBuffer │ ├── Common │ │ ├── CacheManager.h │ │ ├── SMDefine.h │ │ ├── SMOption.cpp │ │ ├── SMOption.h │ │ ├── UserInfoManager.cpp │ │ ├── UserInfoManager.h │ │ ├── UserValidManager.cpp │ │ └── UserValidManager.h │ ├── Linux编译说明.txt │ ├── Login │ │ ├── BaseCommand.cpp │ │ ├── BaseCommand.h │ │ ├── Login.cpp │ │ ├── Login.mpc │ │ ├── Login.sln │ │ ├── Login.vcproj │ │ ├── Login.vcxproj │ │ ├── Login.vcxproj.filters │ │ ├── Logind.exp │ │ ├── Makefile │ │ ├── Makefile.define │ │ ├── runlinuxmake.sh │ │ └── zzz.bat │ ├── Watch │ │ ├── Watch.cpp │ │ ├── Watch.mpc │ │ ├── Watch.sln │ │ ├── Watch.vcproj │ │ ├── zzz.bat │ │ ├── zzz.sh │ │ └── 输出-生成.txt │ └── 二级共享内存实现原理.docx │ ├── LsPlugIn │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── IniRead │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── iniparser.c │ │ └── iniparser.h │ ├── LSLogic.cpp │ ├── LSLogic.mpc │ ├── LSLogic.vcproj │ ├── LSLogic.vcxproj │ ├── LSLogic.vcxproj.filters │ ├── LSLogicd.exp │ ├── ListManager.cpp │ ├── ListManager.h │ ├── LsPlugIn.sln │ ├── MD5.cpp │ ├── MD5.h │ ├── Makefile │ ├── Makefile.define │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── LuaTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Lua │ │ ├── LuaDefine.h │ │ ├── LuaFn.cpp │ │ ├── LuaFn.h │ │ ├── LuaFnRegister.h │ │ ├── LuaFn_Tcp.h │ │ └── ParamData.h │ ├── LuaBase │ │ ├── Lua.lib │ │ ├── lapi.h │ │ ├── lauxlib.h │ │ ├── lcode.h │ │ ├── ldebug.h │ │ ├── ldo.h │ │ ├── lfunc.h │ │ ├── lgc.h │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmem.h │ │ ├── lobject.h │ │ ├── lopcodes.h │ │ ├── lparser.h │ │ ├── lstate.h │ │ ├── lstring.h │ │ ├── ltable.h │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.h │ │ ├── lvm.h │ │ ├── lzio.h │ │ ├── tolua++.h │ │ ├── tolua_event.h │ │ ├── toluabind.h │ │ └── toluabind_default.h │ ├── LuaTest.cpp │ ├── LuaTest.mpc │ ├── LuaTest.vcproj │ ├── LuaTestd.exp │ ├── Makefile │ ├── Makefile.define │ ├── Readme.txt │ ├── ToLua_Linux_Make.txt │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── MonitorServer │ ├── DataManager.cpp │ ├── DataManager.h │ ├── EncodeConvert │ │ ├── GBKtoUTF8.cpp │ │ ├── GBKtoUTF8.h │ │ └── GBKtoUTF8.inl │ ├── HtmlTemplate │ │ ├── Index.html │ │ ├── detail │ │ │ └── test-01.html │ │ └── json │ │ │ ├── test-01_connect.json │ │ │ ├── test-01_cpu.json │ │ │ ├── test-01_flow.json │ │ │ └── test-01_memory.json │ ├── Monitor.xml │ ├── MonitorCommand.cpp │ ├── MonitorCommand.h │ ├── MonitorServer.cpp │ ├── MonitorServer.mpc │ ├── MonitorServer.sln │ ├── MonitorServer.vcxproj │ ├── MonitorServer.vcxproj.filters │ ├── TimeEvent.cpp │ ├── TimeEvent.h │ ├── TinyXML │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── MutiProcess │ ├── Common │ │ └── QueueDefine.h │ ├── Queue │ │ ├── BaseCommand.cpp │ │ ├── BaseCommand.h │ │ ├── LinuxQueue.cpp │ │ ├── LinuxQueue.mpc │ │ ├── LinuxQueue.vcproj │ │ ├── LinuxQueue.vcxproj │ │ ├── LinuxQueue.vcxproj.filters │ │ ├── LinuxQueued.exp │ │ ├── Makefile │ │ ├── Makefile.define │ │ ├── Queue.sln │ │ ├── runlinuxmake.sh │ │ └── zzz.bat │ ├── Watch │ │ ├── Watch.cpp │ │ ├── Watch.mpc │ │ └── zzz.sh │ └── 功能说明.txt │ ├── PlugAtoB │ ├── PlugA │ │ ├── BaseCommand.cpp │ │ ├── BaseCommand.h │ │ ├── Makefile │ │ ├── Makefile.define │ │ ├── PlugA.cpp │ │ ├── PlugA.mpc │ │ ├── PlugA.sln │ │ ├── PlugA.vcproj │ │ ├── PlugA.vcxproj │ │ ├── PlugA.vcxproj.filters │ │ ├── PlugAd.exp │ │ ├── runlinuxmake.sh │ │ └── zzz.bat │ └── PlugB │ │ ├── BaseCommand.cpp │ │ ├── BaseCommand.h │ │ ├── Makefile │ │ ├── Makefile.define │ │ ├── PlugB.cpp │ │ ├── PlugB.mpc │ │ ├── PlugB.sln │ │ ├── PlugB.vcproj │ │ ├── PlugB.vcxproj │ │ ├── PlugB.vcxproj.filters │ │ ├── PlugBd.exp │ │ ├── runlinuxmake.sh │ │ └── zzz.bat │ ├── Proxy │ ├── Proxy │ │ ├── BaseCommand.cpp │ │ ├── BaseCommand.h │ │ ├── Makefile │ │ ├── Makefile.define │ │ ├── Proxy.sln │ │ ├── ProxyClient.cpp │ │ ├── ProxyClient.h │ │ ├── ProxyTest.cpp │ │ ├── ProxyTest.mpc │ │ ├── ProxyTest.vcproj │ │ ├── ProxyTest.vcxproj │ │ ├── ProxyTest.vcxproj.filters │ │ ├── runlinuxmake.sh │ │ └── zzz.bat │ └── ProxyServer │ │ ├── ProxyServeMain.cpp │ │ ├── ProxyServer.sln │ │ ├── ProxyServer.vcproj │ │ ├── ProxyServer.vcxproj │ │ ├── ProxyTest.mpc │ │ ├── zzz.bat │ │ └── zzz.sh │ ├── RealTimeMonitor │ ├── Config.conf │ ├── IMonitorCommand.h │ ├── Monitor.mpc │ ├── MonitorCommand.cpp │ ├── MonitorCommand.h │ ├── PostMonitorData.cpp │ ├── PostMonitorData.h │ ├── RealTimeMonitor.cpp │ ├── RealTimeMonitor.sln │ ├── RealTimeMonitor.vcxproj │ ├── cJSON.cpp │ ├── cJSON.h │ ├── readme.md │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── TTyTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── ReadMe.txt │ ├── TTyTest.cpp │ ├── TTyTest.mpc │ ├── TTyTest.sln │ ├── TTyTest.vcproj │ ├── TTyTest.vcxproj │ ├── TTyTest.vcxproj.filters │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── TcpTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── ReadMe.txt │ ├── TcpTest.cpp │ ├── TcpTest.ini │ ├── TcpTest.mpc │ ├── TcpTest.sln │ ├── TcpTest.vcproj │ ├── TcpTest.vcxproj │ ├── TcpTest.vcxproj.filters │ ├── TcpTest_2019.sln │ ├── TcpTest_2019.vcxproj │ ├── TcpTest_2019.vcxproj.filters │ ├── TcpTestd.exp │ ├── TcpTestd.lib │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── TestTCPPost │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── PostServerLogic.h │ ├── ProxyManager.cpp │ ├── ProxyManager.h │ ├── ReadMe.txt │ ├── TcpTestPost.vcproj │ ├── TcpTestPost.vcxproj │ ├── TcpTestPost.vcxproj.filters │ ├── TcpTestPostd.exp │ ├── TcpTestPostd.lib │ ├── TestTCPPost.cpp │ ├── TestTCPPost.mpc │ ├── TestTCPPost.sln │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── TestUDPPost │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── ReadMe.txt │ ├── TestUDPPost.cpp │ ├── TestUDPPost.mpc │ ├── TestUDPPost.sln │ ├── UDPTestPost.vcproj │ ├── UDPTestPost.vcxproj │ ├── UDPTestPost.vcxproj.filters │ ├── UDPTestPostd.exp │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── TimerTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── ReadMe.txt │ ├── TimerTest.cpp │ ├── TimerTest.mpc │ ├── TimerTest.sln │ ├── TimerTest.vcproj │ ├── TimerTest.vcxproj │ ├── TimerTest.vcxproj.filters │ ├── TimerTestd.exp │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── UDPTest │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── ReadMe.txt │ ├── TestUDP.mpc │ ├── UDPTest.cpp │ ├── UDPTest.sln │ ├── UDPTest.vcproj │ ├── UDPTest.vcxproj │ ├── UDPTest.vcxproj.filters │ ├── UDPTest_2017.sln │ ├── UDPTest_2017.vcxproj │ ├── UDPTest_2017.vcxproj.filters │ ├── UDPTestd.exp │ ├── UDPTestd.lib │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── WebSocket │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── WebSocket.sln │ ├── WebSocketTest.cpp │ ├── WebSocketTest.mpc │ ├── WebSocketTest.vcproj │ ├── WebSocketTest.vcxproj │ ├── WebSocketTest.vcxproj.filters │ ├── WebSocketTestd.exp │ ├── WebSocketTestd.lib │ ├── base64.cpp │ ├── base64.h │ ├── runlinuxmake.sh │ ├── sha1.cpp │ ├── sha1.h │ └── zzz.bat │ ├── XMLParse │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── Makefile │ ├── Makefile.define │ ├── TinyXML │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── XMLParse.cpp │ ├── XMLParse.mpc │ ├── XMLParse.sln │ ├── XMLParse.vcproj │ ├── XMLParse.vcxproj │ ├── XMLParse.vcxproj.filters │ ├── XmlOpeation.cpp │ ├── XmlOpeation.h │ ├── runlinuxmake.sh │ └── zzz.bat │ ├── ZooClient │ ├── BaseCommand.cpp │ ├── BaseCommand.h │ ├── ZooClient.cpp │ ├── ZooClient.mpc │ ├── runlinuxmake.sh │ ├── zkClient.cpp │ ├── zkClient.h │ └── zzz.bat │ └── 编译说明.txt └── testresult └── result.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # thaks for conterbuter: 2 | > 凹凸man 3 | > w1w 4 | > 乔戈 5 | > Bobo 6 | > 弄香花满衣 7 | 8 | # 问题描述(question) 9 | ## 操作系统环境(OS Environment): 10 | ## ACE版本环境(ACE Version): 11 | ## PSS配置文件信息(PSS configure XML file content): 12 | ## 逻辑过程描述(Logic plugin describe): 13 | ## 问题描述(Question describe): 14 | ## 堆栈信息(Stack information): 15 | ## 期待结果(Expected results): -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | # 问题描述(question) 3 | ## 操作系统环境(OS Environment): 4 | ## ACE版本环境(ACE Version): 5 | ## PSS配置文件信息(PSS configure XML file content): 6 | ## 逻辑过程描述(Logic plugin describe): 7 | ## 问题描述(Question describe): 8 | ## 堆栈信息(Stack information): 9 | ## 期待结果(Expected results): 10 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Fixes **OR** Add new function 2 | 3 | #### Change propose: 4 | - 5 | - 6 | - 7 | - 8 | 9 | > **Some notes:** 10 | > I change it for ... -------------------------------------------------------------------------------- /Build/Linux/CppUnitTest.ini: -------------------------------------------------------------------------------- 1 | [Config] 2 | CppUnitTest=aaa -------------------------------------------------------------------------------- /Build/Linux/FileTest/1.txt: -------------------------------------------------------------------------------- 1 | 01 00 00 10 08 00 00 00 46 45 45 45 45 59 45 53 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 be cd aa 8f 3c 01 00 00 -------------------------------------------------------------------------------- /Build/Linux/FileWatch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Build/Linux/LoginBufferFile/UserLogin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Linux/LoginBufferFile/UserLogin.txt -------------------------------------------------------------------------------- /Build/Linux/LuaScript/LuaTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Linux/LuaScript/LuaTest.lua -------------------------------------------------------------------------------- /Build/Linux/LuaScript/RoomLogic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Linux/LuaScript/RoomLogic.lua -------------------------------------------------------------------------------- /Build/Linux/forbiddenIP.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Build/Linux/forward.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Build/Linux/killp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ${HOME}/.bash_profile 3 | 4 | ps -ef|grep $LOGNAME | grep -w $1 |grep -v pts| grep -v killp|awk '{print $2}'|while read tt 5 | do 6 | echo "killed $tt" 7 | kill $tt 8 | done 9 | #ps -ef|grep $LOGNAME|grep $1|grep -v grep|awk '{print $2}'|xargs kill -9 10 | -------------------------------------------------------------------------------- /Build/Linux/pss.mwc: -------------------------------------------------------------------------------- 1 | workspace(PSS) { 2 | makefile.mpc 3 | cmdline += -include $PWD 4 | } -------------------------------------------------------------------------------- /Build/Linux/psssonar.mwc: -------------------------------------------------------------------------------- 1 | workspace(PSS) { 2 | makegcov.mpc 3 | cmdline += -include $PWD 4 | } -------------------------------------------------------------------------------- /Build/Linux/reports/cppunit/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Linux/reports/cppunit/report.xml -------------------------------------------------------------------------------- /Build/Linux/runlinuxmpc.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace pss.mwc -------------------------------------------------------------------------------- /Build/Linux/runpss.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ${HOME}/.bash_profile 3 | 4 | ./killp PurenessScopeServer 5 | nohup ./PurenessScopeServer > nohup.out 2>&1 & 6 | -------------------------------------------------------------------------------- /Build/Linux/valgrind-deadlock.run: -------------------------------------------------------------------------------- 1 | valgrind --tool=helgrind --log-file=deadlock.log --error-limit=no ./PurenessScopeServer 2 | -------------------------------------------------------------------------------- /Build/Linux/valgrind-efc.run: -------------------------------------------------------------------------------- 1 | valgrind --tool=callgrind --separate-threads=yes --log-file=RunLog.log ./PurenessScopeServer -------------------------------------------------------------------------------- /Build/Linux/valgrind-mem.run: -------------------------------------------------------------------------------- 1 | valgrind --tool=memcheck --leak-check=full --show-reachable=yes --log-file=EfcLog.log ./PurenessScopeServer -------------------------------------------------------------------------------- /Build/Linux/valgrind.run: -------------------------------------------------------------------------------- 1 | valgrind --tool=memcheck --leak-check=full --show-reachable=yes --log-file=RunLog.log ./PurenessScopeServer -------------------------------------------------------------------------------- /Build/Windows/FileTest/1.txt: -------------------------------------------------------------------------------- 1 | 01 00 00 10 08 00 00 00 46 45 45 45 45 59 45 53 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 be cd aa 8f 3c 01 00 00 -------------------------------------------------------------------------------- /Build/Windows/FileWatch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Build/Windows/ListServer_LS.ini: -------------------------------------------------------------------------------- 1 | [List] 2 | Count=1 3 | LGID0=1001 4 | LGIP0=127.0.0.1 5 | LGPort0=10002 -------------------------------------------------------------------------------- /Build/Windows/LoginBufferFile/UserLogin.txt: -------------------------------------------------------------------------------- 1 | 1001,1000,1000; 2 | 1002,1102,1102; 3 | 1003,1200,1200; 4 | 1004,1400,1400; 5 | 1005,1400,1400; 6 | 1006,1400,1400; 7 | 1007,1700,1700; 8 | -------------------------------------------------------------------------------- /Build/Windows/LuaScript/LuaTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Windows/LuaScript/LuaTest.lua -------------------------------------------------------------------------------- /Build/Windows/LuaScript/RoomLogic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Build/Windows/LuaScript/RoomLogic.lua -------------------------------------------------------------------------------- /Build/Windows/forbiddenIP.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Build/Windows/forward.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CppUnitTest/Test/commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/CppUnitTest/Test/commons.h -------------------------------------------------------------------------------- /CppUnitTest/Test/test_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/CppUnitTest/Test/test_linux.cpp -------------------------------------------------------------------------------- /CppUnitTest/Test/testcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/CppUnitTest/Test/testcase.cpp -------------------------------------------------------------------------------- /CppUnitTest/Test/testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/CppUnitTest/Test/testcase.h -------------------------------------------------------------------------------- /Icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/Icon.jpg -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Common.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Makefile -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Makefile.define -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/ParseCAPIFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/ParseCAPIFile.cpp -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/ParseCAPIFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/ParseCAPIFile.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Write_Packet_Parse_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Write_Packet_Parse_cpp.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Command.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Logic.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Main_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Main_cpp.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/Write_Plugin_Make.h -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/XML2CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/XML2CPP.cpp -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/XML2CPP.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/XML2CPP.vcproj -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/XmlOpeation.cpp -------------------------------------------------------------------------------- /PluginMaker/XML2CPP/XML2CPP/XmlOpeation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PluginMaker/XML2CPP/XML2CPP/XmlOpeation.h -------------------------------------------------------------------------------- /Project/Run.bat: -------------------------------------------------------------------------------- 1 | cmake -G "Visual Studio 15 Win64" -DVS_DEVENV_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\devenv.exe" .. -------------------------------------------------------------------------------- /PssSampleClient/AutoTestClient/AutoTestClient/AutoTestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/AutoTestClient/AutoTestClient/AutoTestClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/AutoTestClient/AutoTestClient/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/AutoTestClient/AutoTestClient/Common.h -------------------------------------------------------------------------------- /PssSampleClient/AutoTestClient/AutoTestClient/TcpSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/AutoTestClient/AutoTestClient/TcpSocketClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/AutoTestClient/AutoTestClient/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/AutoTestClient/AutoTestClient/XmlOpeation.cpp -------------------------------------------------------------------------------- /PssSampleClient/AutoTestClient/AutoTestClient/XmlOpeation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/AutoTestClient/AutoTestClient/XmlOpeation.h -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/CommonTCPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/CommonTCPClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/CommonTCPClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/CommonTCPClient.vcproj -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/TpClientManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/TpClientManager.cpp -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/TpClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/TpClientManager.h -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTCPClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTCPClient/targetver.h -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTcpTest/CommonTcpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTcpTest/CommonTcpTest.cpp -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTcpTest/CommonTcpTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTcpTest/CommonTcpTest.vcproj -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTcpTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTcpTest/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTcpTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTcpTest/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/CommonTCPClient/CommonTcpTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/CommonTCPClient/CommonTcpTest/targetver.h -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.h -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.rc -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClient.vcproj -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClientDlg.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/PssFtpClientDlg.h -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/ReadMe.txt -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/res/PssFtpClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/res/PssFtpClient.ico -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/res/PssFtpClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/res/PssFtpClient.rc2 -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/PSSFtpClient/PssFtpClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSFtpClient/PssFtpClient/targetver.h -------------------------------------------------------------------------------- /PssSampleClient/PSSHttp/HttpGet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSHttp/HttpGet.html -------------------------------------------------------------------------------- /PssSampleClient/PSSHttp/HttpPost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSHttp/HttpPost.html -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClient.h -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClient.rc -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClient.vcproj -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClientDlg.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/LoginClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/LoginClientDlg.h -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/ReadMe.txt -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/res/LoginClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/res/LoginClient.ico -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/res/LoginClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/res/LoginClient.rc2 -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/PSSLoginClient/LoginClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSLoginClient/LoginClient/targetver.h -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClient.h -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClient.rc -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClient.vcproj -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClientDlg.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/PlugClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/PlugClientDlg.h -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/ReadMe.txt -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/res/PlugClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/res/PlugClient.ico -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/res/PlugClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/res/PlugClient.rc2 -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/PSSPlugClient/PlugClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSPlugClient/PlugClient/targetver.h -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.h -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.rc -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClient.vcproj -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClientDlg.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/PSSProxyClientDlg.h -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/ReadMe.txt -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/res/PSSProxyClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/res/PSSProxyClient.ico -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/res/PSSProxyClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/res/PSSProxyClient.rc2 -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/stdafx.cpp -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/stdafx.h -------------------------------------------------------------------------------- /PssSampleClient/PSSProxyClient/PSSProxyClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/PssSampleClient/PSSProxyClient/PSSProxyClient/targetver.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/Main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/Main.jpg -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/ClientDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/ClientDefine.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnect.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnect.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnectM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientConnectM.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientMain.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientMain.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientModule.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientModule.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientWorkThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientWorkThread.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientWorkThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgClientWorkThread.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgForbidenIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgForbidenIP.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgForbidenIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgForbidenIP.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgServerConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgServerConnect.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgTrackIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgTrackIP.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgTrackIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgTrackIP.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgWorkThreadAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgWorkThreadAI.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgWorkThreadAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/DlgWorkThreadAI.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/PSS_ClientManager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/PSS_ClientManager.rc -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/PSS_ClientManagerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/PSS_ClientManagerDlg.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/TcpClientConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/TcpClientConnect.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/Windows_Bin/CheckServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/Windows_Bin/CheckServer.xml -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/Windows_Bin/Config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/XmlOpeation.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/res/PSS_ClientManager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/res/PSS_ClientManager.ico -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/PSS_ClientManager/resource.h -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/PSS_ClientManager/stdafx.cpp: -------------------------------------------------------------------------------- 1 | 2 | // stdafx.cpp : source file that includes just the standard includes 3 | // PSS_ClientManager.pch will be the pre-compiled header 4 | // stdafx.obj will contain the pre-compiled type information 5 | 6 | #include "stdafx.h" 7 | 8 | 9 | -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/Readme.md -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager/先读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager/先读我.txt -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager_wx/PSS_ClientManager_wx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager_wx/PSS_ClientManager_wx.ico -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager_wx/bin/CheckServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager_wx/bin/CheckServer.xml -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager_wx/bin/Config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TestNetworkTool/PSS_ClientManager_wx/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PSS_ClientManager_wx/small.ico -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/.vs/PassTCP/v15/Solution.VC.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/.vs/PassTCP/v15/Solution.VC.db-shm -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/.vs/PassTCP/v15/Solution.VC.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/.vs/PassTCP/v15/Solution.VC.db-wal -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/LuaLib/Lua.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/LuaLib/Lua.vcproj -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/LuaLib/Lua.vcproj.8.00.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/LuaLib/Lua.vcproj.8.00.old -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/LuaLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/LuaLib/ReadMe.txt -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/LuaLib/lapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** Auxiliary functions from Lua API 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lapi_h 8 | #define lapi_h 9 | 10 | 11 | #include "lobject.h" 12 | 13 | 14 | LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/LuaLib/toluabind.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.92 on Sun Feb 15 22:29:48 2009. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/Main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/Main.jpg -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/ClientTcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/ClientTcpSocket.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/ClientTcpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/ClientTcpSocket.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/ClientUdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/ClientUdpSocket.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/ClientUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/ClientUdpSocket.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Lua/LuaDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Lua/LuaDefine.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Lua/LuaFn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Lua/LuaFn.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Lua/LuaFnRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Lua/LuaFnRegister.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Lua/LuaFn_Tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Lua/LuaFn_Tcp.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Lua/ParamData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Lua/ParamData.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PacketDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PacketDlg.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PacketDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PacketDlg.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCP.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCP.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCP.rc -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCP.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCP.vcproj -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCPDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCPDlg.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/PassTCPDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/PassTCPDlg.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/ReadMe.txt -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/Windows_bin/PassTcp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/Windows_bin/PassTcp.lua -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/define.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/res/PassTCP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/res/PassTCP.ico -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/res/PassTCP.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/res/PassTCP.rc2 -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/stdafx.cpp -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/stdafx.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/targetver.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/PassTCP/先读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/PassTCP/先读我.txt -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/Readme.md -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP/先读我.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP/先读我.txt -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP_wx/ClientUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP_wx/ClientUdpSocket.h -------------------------------------------------------------------------------- /TestNetworkTool/PassTCP_wx/bin/PassTcp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/TestNetworkTool/PassTCP_wx/bin/PassTcp.lua -------------------------------------------------------------------------------- /ThirdLib/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Common.h -------------------------------------------------------------------------------- /ThirdLib/include/EncodeConvert/GBKtoUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/EncodeConvert/GBKtoUTF8.cpp -------------------------------------------------------------------------------- /ThirdLib/include/EncodeConvert/GBKtoUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/EncodeConvert/GBKtoUTF8.h -------------------------------------------------------------------------------- /ThirdLib/include/Lua/LuaDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Lua/LuaDefine.h -------------------------------------------------------------------------------- /ThirdLib/include/Lua/LuaFn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Lua/LuaFn.cpp -------------------------------------------------------------------------------- /ThirdLib/include/Lua/LuaFnRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Lua/LuaFnRegister.h -------------------------------------------------------------------------------- /ThirdLib/include/Lua/LuaFn_Tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Lua/LuaFn_Tcp.h -------------------------------------------------------------------------------- /ThirdLib/include/Lua/ParamData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/Lua/ParamData.h -------------------------------------------------------------------------------- /ThirdLib/include/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/XmlOpeation.cpp -------------------------------------------------------------------------------- /ThirdLib/include/XmlOpeation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/include/XmlOpeation.h -------------------------------------------------------------------------------- /ThirdLib/src/TcpClientConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/src/TcpClientConnect.cpp -------------------------------------------------------------------------------- /ThirdLib/thirdparty/LuaLib/Lua.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/thirdparty/LuaLib/Lua.vcproj -------------------------------------------------------------------------------- /ThirdLib/thirdparty/LuaLib/Lua.vcproj.8.00.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/thirdparty/LuaLib/Lua.vcproj.8.00.old -------------------------------------------------------------------------------- /ThirdLib/thirdparty/LuaLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/ThirdLib/thirdparty/LuaLib/ReadMe.txt -------------------------------------------------------------------------------- /ThirdLib/thirdparty/LuaLib/lapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** Auxiliary functions from Lua API 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lapi_h 8 | #define lapi_h 9 | 10 | 11 | #include "lobject.h" 12 | 13 | 14 | LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /ThirdLib/thirdparty/LuaLib/toluabind.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.92 on Sun Feb 15 22:29:48 2009. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/ClientCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ClientCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ClientMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ClientMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ClientUDPMassage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ClientUDPMassage.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ConvertBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ConvertBuffer.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/CreateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/CreateInfo.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/HashTable.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IBuffPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IBuffPacket.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ICheckPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ICheckPacket.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IClientManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IClientParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IClientParse.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IConnectManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IControlListen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IControlListen.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IEchartlog.h: -------------------------------------------------------------------------------- 1 | #ifndef _IECHERTLOG_H 2 | #define _IECHERTLOG_H 3 | 4 | #include "define.h" 5 | 6 | class IEchartlog 7 | { 8 | public: 9 | virtual ~IEchartlog() {}; 10 | 11 | virtual bool Writelog(const char* pPath, const char* pFileName, const char* pTitle, const char* pText) = 0; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/IFrameCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IFrameCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ILogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ILogManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ILogObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ILogObject.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ILogicQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ILogicQueue.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/IMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IModuleInfo.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IModuleMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IModuleMessageManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IObject.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IPacketManager.h: -------------------------------------------------------------------------------- 1 | #ifndef _IPACKETMANAGER_H 2 | #define _IPACKETMANAGER_H 3 | 4 | #include "IBuffPacket.h" 5 | 6 | class IPacketManager 7 | { 8 | public: 9 | virtual ~IPacketManager() {} 10 | 11 | virtual shared_ptr Create(const char* pFileName = __FILE__, uint32 u4Line = __LINE__) = 0; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/IPacketParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IPacketParse.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ISendCacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ISendCacheManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IServerManager.h: -------------------------------------------------------------------------------- 1 | #ifndef _ISERVERMANAGER_H 2 | #define _ISERVERMANAGER_H 3 | 4 | #include 5 | 6 | class IServerManager 7 | { 8 | public: 9 | virtual ~IServerManager() {} 10 | virtual bool Close() = 0; 11 | }; 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/ITTyClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ITTyClientManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ITTyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ITTyMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/IpCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/IpCheck.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/Lcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/Lcm.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/LoadLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/LoadLibrary.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/ObjectArrayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ObjectArrayList.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ObjectPoolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ObjectPoolManager.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/Object_Pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/Object_Pool.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/PerformanceCounter.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ProfileTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ProfileTime.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/RandomNumber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/RandomNumber.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/TSCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/TSCommon.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/ThreadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ThreadLock.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/ThreadQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/ThreadQueue.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/TimeStamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/TimeStamp.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/TimeWheelLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/TimeWheelLink.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/Trace.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/consoleoutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/consoleoutput.hpp -------------------------------------------------------------------------------- /purenessscopeserver/Common/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/define.h -------------------------------------------------------------------------------- /purenessscopeserver/Common/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifndef NOMINMAX 4 | #define NOMINMAX // prevent windows redefining min/max 5 | #endif 6 | 7 | #ifndef WIN32_LEAN_AND_MEAN 8 | #define WIN32_LEAN_AND_MEAN 9 | #endif 10 | 11 | #include 12 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- 1 | #include "os.h" 2 | #warning "fmt/posix.h is deprecated; use fmt/os.h instead" 3 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/spdlog/fwd.h: -------------------------------------------------------------------------------- 1 | // Copyright(c) 2015-present, Gabi Melman & spdlog contributors. 2 | // Distributed under the MIT License (http://opensource.org/licenses/MIT) 3 | 4 | #pragma once 5 | 6 | namespace spdlog { 7 | class logger; 8 | class formatter; 9 | 10 | namespace sinks { 11 | class sink; 12 | } 13 | 14 | } // namespace spdlog 15 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/spdlog/version.h: -------------------------------------------------------------------------------- 1 | // Copyright(c) 2015-present, Gabi Melman & spdlog contributors. 2 | // Distributed under the MIT License (http://opensource.org/licenses/MIT) 3 | 4 | #pragma once 5 | 6 | #define SPDLOG_VER_MAJOR 1 7 | #define SPDLOG_VER_MINOR 8 8 | #define SPDLOG_VER_PATCH 2 9 | 10 | #define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH) 11 | -------------------------------------------------------------------------------- /purenessscopeserver/Common/tms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/Common/tms.hpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseClientConnectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseClientConnectManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseClientConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseClientConnectManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseConnectClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseConnectClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseConnectClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseConnectClient.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseConsoleHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseConsoleHandle.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseConsoleHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseConsoleHandle.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseHander.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseHander.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseServerManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BaseServerManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BaseTask.h: -------------------------------------------------------------------------------- 1 | #ifndef _BASETASK_H 2 | #define _BASETASK_H 3 | 4 | #include "define.h" 5 | #include "ace/Task.h" 6 | #include "ace/OS_Memory.h" 7 | 8 | int Task_Common_CloseMsgQueue(ACE_Task* pTask, ACE_Condition& cond, ACE_Thread_Mutex& mutex); 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BuffPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BuffPacket.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BuffPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BuffPacket.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BuffPacketManager.cpp: -------------------------------------------------------------------------------- 1 | #include "BuffPacketManager.h" 2 | 3 | shared_ptr CBuffPacketManager::Create(const char* pFileName, uint32 u4Line) 4 | { 5 | ACE_UNUSED_ARG(pFileName); 6 | ACE_UNUSED_ARG(u4Line); 7 | 8 | auto pBuffPacket = std::make_shared(); 9 | pBuffPacket->Init(); 10 | return pBuffPacket; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/BuffPacketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/BuffPacketManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/CommandAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/CommandAccount.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/CommandAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/CommandAccount.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ConnectCounter.cpp: -------------------------------------------------------------------------------- 1 | #include "ConnectCounter.h" 2 | 3 | uint32 CConnectCounter::CreateCounter() 4 | { 5 | ACE_Guard guard(m_ThreadWritrLock); 6 | return ++m_u4CountIndex; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ConnectCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ConnectCounter.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ForbiddenIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ForbiddenIP.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ForbiddenIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ForbiddenIP.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/IHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/IHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/IPAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/IPAccount.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/IPAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/IPAccount.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/LinuxCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/LinuxCPU.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/MakePacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/MakePacket.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/MakePacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/MakePacket.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/MakePacket_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/MakePacket_Common.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/MessageBlockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/MessageBlockManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ProfileTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ProfileTime.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/Ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/Ring.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/SendMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/SendMessage.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/SendMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/SendMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/TcpRedirection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/TcpRedirection.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/TcpRedirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/TcpRedirection.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ThreadInfo.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/ThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/ThreadInfo.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/WindowsCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/WindowsCPU.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/XmlConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/XmlConfig.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/XmlConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/XmlConfig.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/XmlOpeation.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Common/XmlOpeation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Common/XmlOpeation.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/ConsoleMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/ConsoleMessage.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/ConsoleMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/ConsoleMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/ConsolePromiss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/ConsolePromiss.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/ConsolePromiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/ConsolePromiss.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/MessageDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/MessageDefine.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/MessageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/MessageDefine.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/MessageDispose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/MessageDispose.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Console/MessageDispose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Console/MessageDispose.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/CppUnitMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/CppUnitMain.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/CppUnitMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/CppUnitMain.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/PostServerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/PostServerMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/PostUdpServerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/PostUdpServerMessage.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_AceReactorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_AceReactorManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ConnectClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ConnectClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ConnectHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ConnectHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ConsoleMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ConsoleMessage.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_LogManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_MessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_MessageService.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_PacketParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_PacketParse.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_Proformancecount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_Proformancecount.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ServerMessageInfoPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ServerMessageInfoPool.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ServerMessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ServerMessageManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_TcpRedirection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_TcpRedirection.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Uint_ThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Uint_ThreadInfo.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_Aes.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_BaseHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_BaseHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_BuffPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_BuffPacket.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_BuffPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_BuffPacket.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_CommandAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_CommandAccount.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_ConnectTcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_ConnectTcp.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_ConnectUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_ConnectUdp.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_EChartlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_EChartlog.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_FileLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_FileLog.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_FileTestManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_FileTestManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_ForbiddenIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_ForbiddenIP.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_MessageDyeingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_MessageDyeingManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_ModuleMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_ModuleMessageManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_TimeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_TimeQueue.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/CppUnit/Unit_WorkThreadAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/CppUnit/Unit_WorkThreadAI.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Encrypt/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Encrypt/Aes.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/FileTest/FileTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/FileTest/FileTest.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/FileTest/FileTestManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/FileTest/FileTestManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/FileTest/FileTestManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/FileTest/FileTestManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Lib/PacketParsed.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Lib/PacketParsed.exp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Lib/PacketParsed.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Lib/PacketParsed.lib -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/LogSystem/FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/LogSystem/FileLogger.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/LogSystem/FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/LogSystem/FileLogger.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/LogSystem/LogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/LogSystem/LogManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/LogSystem/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/LogSystem/LogManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Mail/smtps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Mail/smtps.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Mail/smtps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Mail/smtps.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/HandlerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/HandlerManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/LoadModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/LoadModule.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/LoadModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/LoadModule.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/LoadPacketParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/LoadPacketParse.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/LoadPacketParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/LoadPacketParse.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/Message.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/Message.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageDyeingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageDyeingManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageDyeingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageDyeingManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageService.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/MessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/MessageService.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/ModuleMessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/ModuleMessageManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/WorkThreadAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/WorkThreadAI.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Message/WorkThreadAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Message/WorkThreadAI.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PSS_vc2019.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketConsoleParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PacketParse/PacketConsoleParse.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketConsoleParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PacketParse/PacketConsoleParse.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketParse.cpp: -------------------------------------------------------------------------------- 1 | #include "PacketParse.h" 2 | 3 | void CPacketParse::SetHashID(int nHashID) 4 | { 5 | m_nHashID = nHashID; 6 | } 7 | 8 | int CPacketParse::GetHashID() const 9 | { 10 | return m_nHashID; 11 | } 12 | 13 | void CPacketParse::Init() 14 | { 15 | m_nHashID = 0; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PacketParse/PacketParse.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketParseBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PacketParse/PacketParseBase.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PacketParse/PacketParseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PacketParse/PacketParseBase.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/AceProactorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/AceProactorManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/AceProactorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/AceProactorManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ClientProConnectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ClientProConnectManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ClientProConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ClientProConnectManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProAsynchConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProAsynchConnect.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProAsynchConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProAsynchConnect.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectAccept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectAccept.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectAccept.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectClient.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConnectHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConnectHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConsoleAccept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConsoleAccept.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConsoleAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConsoleAccept.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConsoleHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConsoleHandle.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProConsoleHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProConsoleHandle.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProControlListen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProControlListen.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProControlListen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProControlListen.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProServerManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProServerManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProSigHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProSigHandle.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProTTyClientManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProTTyClientManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProTTyClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProTTyClientManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProTTyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProTTyHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Proactor/ProTTyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Proactor/ProTTyHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PurenessScopeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PurenessScopeServer.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/PurenessScopeServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/PurenessScopeServer.vcproj -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/AceReactorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/AceReactorManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/AceReactorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/AceReactorManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ClientReConnectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ClientReConnectManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ClientReConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ClientReConnectManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectAccept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectAccept.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectAccept.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectClient.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConnectHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConnectHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConsoleAccept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConsoleAccept.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConsoleAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConsoleAccept.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConsoleHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConsoleHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ConsoleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ConsoleHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ControlListen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ControlListen.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ControlListen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ControlListen.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ReTTyClientManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ReTTyClientManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ReTTyClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ReTTyClientManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ReTTyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ReTTyHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ReTTyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ReTTyHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ServerManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/ServerManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/Reactor/WaitQuitSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/Reactor/WaitQuitSignal.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ProactorUDPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ProactorUDPClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ProactorUDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ProactorUDPClient.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ProactorUDPHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ProactorUDPHandler.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ProactorUDPHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ProactorUDPHandler.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ReactorUDPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ReactorUDPClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ReactorUDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ReactorUDPClient.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ReactorUDPHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ReactorUDPHander.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/ReactorUDPHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/ReactorUDPHander.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/UDPConnectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/UDPConnectManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/UDP/UDPConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/UDP/UDPConnectManager.h -------------------------------------------------------------------------------- /purenessscopeserver/FrameCore/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/FrameCore/resource.h -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface/PacketParse_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface/PacketParse_Interface.cpp -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface/PacketParse_Interface.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface/PacketParse_Interface.vcproj -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Http/HttpInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_Http/HttpInfo.h -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Http/PacketParse_Interface_Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_Http/PacketParse_Interface_Http.cpp -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Http/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Monitor/PacketParse_Interface_Monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_Monitor/PacketParse_Interface_Monitor.cpp -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Monitor/PacketParse_Interface_Monitor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_Monitor/PacketParse_Interface_Monitor.vcproj -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_Monitor/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_WebSocket/PacketParse_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_WebSocket/PacketParse_Interface.cpp -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_WebSocket/PacketParse_Interface.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_WebSocket/PacketParse_Interface.vcproj -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_WebSocket/WebSocketInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/PacketParse_Interface_WebSocket/WebSocketInfo.h -------------------------------------------------------------------------------- /purenessscopeserver/PacketParse_Interface_WebSocket/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/AutoTest/AutoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/AutoTest/AutoTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/AutoTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/AutoTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/AutoTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/AutoTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/AutoTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/AutoTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/DirView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/DirView.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/DirView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/DirView.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/FtpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/FtpTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/FtpTest/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/FtpTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Http/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Http/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/HttpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Http/HttpTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Http/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Http/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Http/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/KafkaClient/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/KafkaClient/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/KafkaClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/KafkaClient/KafkaClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/KafkaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/KafkaClient/KafkaClient.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/kafkaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/KafkaClient/kafkaTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/KafkaClient/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc11 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/LGLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/LGLogic.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/LGLogicd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/LGLogicd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/LSServer.ini: -------------------------------------------------------------------------------- 1 | [LSServer] 2 | ServerID="1" 3 | IP="127.0.0.1" 4 | Port="10080" -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/LSServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/LSServerManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/LSServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/LSServerManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/ListManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/ListManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/ListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/ListManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LGLogic/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LGLogic/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/CacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/CacheManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/SMDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/SMDefine.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/SMOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/SMOption.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/SMOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/SMOption.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/UserInfoManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/UserInfoManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/UserInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/UserInfoManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/UserValidManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/UserValidManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Common/UserValidManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Common/UserValidManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Linux编译说明.txt: -------------------------------------------------------------------------------- 1 | 编译Login请直接make执行便可以。 2 | 编译Watch,需要把编译完成的Watch拷贝到PSS的Linux_bin目录下,保证读取的是同一文本数据源。 3 | 先运行Watch,再运行PSS -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/Login.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/Logind.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/Logind.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Login/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Login/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Watch/Watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Watch/Watch.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Watch/Watch.mpc: -------------------------------------------------------------------------------- 1 | project(Watch):aceexe{ 2 | exename=Watch 3 | includes += ../../include ../Common 4 | specific (prop:microsoft){ 5 | exeout=”../../../Build/Windows” 6 | } 7 | 8 | Source_Files { 9 | ../Common/*.cpp 10 | *.cpp 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Watch/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Watch/zzz.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/Watch/输出-生成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/Watch/输出-生成.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LoginBuffer/二级共享内存实现原理.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LoginBuffer/二级共享内存实现原理.docx -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/LSLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/LSLogic.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/LSLogicd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/LSLogicd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/ListManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/ListManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/ListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/ListManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LsPlugIn/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LsPlugIn/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Lua/LuaDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Lua/LuaDefine.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Lua/LuaFn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Lua/LuaFn.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Lua/LuaFnRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Lua/LuaFnRegister.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Lua/LuaFn_Tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Lua/LuaFn_Tcp.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Lua/ParamData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Lua/ParamData.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaBase/Lua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/LuaBase/Lua.lib -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaBase/lapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** Auxiliary functions from Lua API 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lapi_h 8 | #define lapi_h 9 | 10 | 11 | #include "lobject.h" 12 | 13 | 14 | LUAI_FUNC void luaA_pushobject (lua_State* L, const TValue* o); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaBase/toluabind.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.92 on Sun Feb 15 22:29:48 2009. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaBase/toluabind_default.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.8pre2 on Tue Dec 13 01:43:55 2005. 4 | */ 5 | 6 | /* Exported function */ 7 | TOLUA_API int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/LuaTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/LuaTestd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/LuaTestd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/Readme.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/ToLua_Linux_Make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/LuaTest/ToLua_Linux_Make.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/LuaTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/DataManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/DataManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/EncodeConvert/GBKtoUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/EncodeConvert/GBKtoUTF8.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/EncodeConvert/GBKtoUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/EncodeConvert/GBKtoUTF8.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/HtmlTemplate/json/test-01_connect.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "text": "PSS命令流量" 4 | }, 5 | "tooltip": {}, 6 | "legend": { 7 | "data":["销量"] 8 | }, 9 | "xAxis": { 10 | "data": ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"] 11 | }, 12 | "yAxis": {}, 13 | "series": [{ 14 | "type": "line", 15 | "data": [5, 20, 36, 10, 10, 20] 16 | }] 17 | } -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/HtmlTemplate/json/test-01_cpu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "text": "PSS命令流量" 4 | }, 5 | "tooltip": {}, 6 | "legend": { 7 | "data":["销量"] 8 | }, 9 | "xAxis": { 10 | "data": ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"] 11 | }, 12 | "yAxis": {}, 13 | "series": [{ 14 | "type": "line", 15 | "data": [5, 20, 36, 10, 10, 20] 16 | }] 17 | } -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/HtmlTemplate/json/test-01_flow.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "text": "PSS命令流量" 4 | }, 5 | "tooltip": {}, 6 | "legend": { 7 | "data":["销量"] 8 | }, 9 | "xAxis": { 10 | "data": ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"] 11 | }, 12 | "yAxis": {}, 13 | "series": [{ 14 | "type": "line", 15 | "data": [5, 20, 36, 10, 10, 20] 16 | }] 17 | } -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/HtmlTemplate/json/test-01_memory.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "text": "PSS命令流量" 4 | }, 5 | "tooltip": {}, 6 | "legend": { 7 | "data":["销量"] 8 | }, 9 | "xAxis": { 10 | "data": ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"] 11 | }, 12 | "yAxis": {}, 13 | "series": [{ 14 | "type": "line", 15 | "data": [5, 20, 36, 10, 10, 20] 16 | }] 17 | } -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/MonitorCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/MonitorCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/MonitorCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/MonitorCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/MonitorServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/MonitorServer.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/TimeEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/TimeEvent.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/TimeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MonitorServer/TimeEvent.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MonitorServer/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc12 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Common/QueueDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Common/QueueDefine.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/LinuxQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/LinuxQueue.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/LinuxQueued.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/LinuxQueued.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Queue/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Queue/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Watch/Watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/MutiProcess/Watch/Watch.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Watch/Watch.mpc: -------------------------------------------------------------------------------- 1 | project(Watch):aceexe{ 2 | exename=Watch 3 | includes += ../../include ../Common 4 | specific (prop:microsoft){ 5 | exeout=”..\..\..\..\Build\Windows\” 6 | }else{ 7 | macros += __LINUX__ 8 | } 9 | 10 | Source_Files { 11 | ../Common/*.cpp 12 | *.cpp 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/Watch/zzz.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/MutiProcess/功能说明.txt: -------------------------------------------------------------------------------- 1 | 实现Pss透传,将数据透传给后台的工作进程。 2 | 并根据后台的工作线程完成工作后回传数据状态。 3 | 测试代码: 4 | 此代码在TcpPass中使用 5 | 0a 00 00 00 00 22 be cd aa 8f 3c 01 00 00 -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/PlugA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/PlugA.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/PlugAd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugA/PlugAd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugA/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/PlugB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/PlugB.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/PlugBd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/PlugAtoB/PlugB/PlugBd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/PlugAtoB/PlugB/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/ProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/ProxyClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/ProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/ProxyClient.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/ProxyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/Proxy/ProxyTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/Proxy/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/ProxyServer/ProxyServeMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/Proxy/ProxyServer/ProxyServeMain.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/ProxyServer/ProxyTest.mpc: -------------------------------------------------------------------------------- 1 | project(ProxyServer):aceexe{ 2 | exename = ProxyServer 3 | 4 | Source_Files{ 5 | ./*.cpp 6 | } 7 | includes += ./ 8 | 9 | specific (prop:microsoft){ 10 | } else { 11 | macros += __LINUX__ 12 | } 13 | } -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/ProxyServer/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/Proxy/ProxyServer/zzz.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/Config.conf: -------------------------------------------------------------------------------- 1 | {"MonitorIP":"127.0.0.1","MonitorPort":"10050","LocalIP":"127.0.0.1","TimeInterval":"60"} -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/IMonitorCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/RealTimeMonitor/IMonitorCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/MonitorCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/RealTimeMonitor/MonitorCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/MonitorCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/RealTimeMonitor/MonitorCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/PostMonitorData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/RealTimeMonitor/PostMonitorData.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/RealTimeMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/RealTimeMonitor/RealTimeMonitor.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/RealTimeMonitor/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc12 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/TTyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TTyTest/TTyTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TTyTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc14 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/TcpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/TcpTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/TcpTest.ini: -------------------------------------------------------------------------------- 1 | [PlugIn] 2 | Name="freeeyes" 3 | Number="2233" -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/TcpTestd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/TcpTestd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/TcpTestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TcpTest/TcpTestd.lib -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TcpTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/PostServerLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/PostServerLogic.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/ProxyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/ProxyManager.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/ProxyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/ProxyManager.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/TcpTestPostd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/TcpTestPostd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/TcpTestPostd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/TcpTestPostd.lib -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/TestTCPPost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestTCPPost/TestTCPPost.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestTCPPost/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/TestUDPPost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/TestUDPPost.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/UDPTestPostd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TestUDPPost/UDPTestPostd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TestUDPPost/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/TimerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/TimerTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/TimerTestd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/TimerTest/TimerTestd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/TimerTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/ReadMe.txt -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/UDPTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/UDPTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/UDPTestd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/UDPTestd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/UDPTestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/UDPTest/UDPTestd.lib -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/UDPTest/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/WebSocketTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/WebSocketTest.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/WebSocketTestd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/WebSocketTestd.exp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/WebSocketTestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/WebSocket/WebSocketTestd.lib -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/base64.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | std::string base64_encode(unsigned char const* , unsigned int len); 4 | std::string base64_decode(std::string const& s); 5 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/WebSocket/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/Makefile -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/Makefile.define -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/XMLParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/XMLParse.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/XmlOpeation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/XMLParse/XmlOpeation.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/XMLParse/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc9 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/BaseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/ZooClient/BaseCommand.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/BaseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/ZooClient/BaseCommand.h -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/ZooClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/ZooClient/ZooClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/runlinuxmake.sh: -------------------------------------------------------------------------------- 1 | mwc.pl -type gnuace -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/zkClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/ZooClient/zkClient.cpp -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/ZooClient/zzz.bat: -------------------------------------------------------------------------------- 1 | %ACE_ROOT%/bin/mwc.pl -type vc11 2 | -------------------------------------------------------------------------------- /purenessscopeserver/example-Module/编译说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeeyes/PSS/cb6dac549f2fa36c9838b5cb183ba010d56978e3/purenessscopeserver/example-Module/编译说明.txt --------------------------------------------------------------------------------