├── .cproject ├── .project ├── .settings └── org.eclipse.cdt.core.prefs ├── README.md ├── cfg.data ├── client.py ├── header ├── commonStruct.h ├── configFile.h ├── epollHandle.h ├── epolloutDataControl.h ├── errorHandle.h ├── guard.h ├── magicNum.h ├── sessionDataControl.h ├── socketFunction.h └── threadControl.h ├── main.cpp └── src ├── configFile.cpp ├── epollHandle.cpp ├── epolloutDataControl.cpp ├── errorHandle.cpp ├── sessionDataControl.cpp ├── socketFunction.cpp └── threadControl.cpp /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/.cproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/README.md -------------------------------------------------------------------------------- /cfg.data: -------------------------------------------------------------------------------- 1 | [server] 2 | #配置文件等号左右可以有空格也可以没有 3 | port=12345 -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/client.py -------------------------------------------------------------------------------- /header/commonStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/commonStruct.h -------------------------------------------------------------------------------- /header/configFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/configFile.h -------------------------------------------------------------------------------- /header/epollHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/epollHandle.h -------------------------------------------------------------------------------- /header/epolloutDataControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/epolloutDataControl.h -------------------------------------------------------------------------------- /header/errorHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/errorHandle.h -------------------------------------------------------------------------------- /header/guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/guard.h -------------------------------------------------------------------------------- /header/magicNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/magicNum.h -------------------------------------------------------------------------------- /header/sessionDataControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/sessionDataControl.h -------------------------------------------------------------------------------- /header/socketFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/socketFunction.h -------------------------------------------------------------------------------- /header/threadControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/header/threadControl.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/main.cpp -------------------------------------------------------------------------------- /src/configFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/configFile.cpp -------------------------------------------------------------------------------- /src/epollHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/epollHandle.cpp -------------------------------------------------------------------------------- /src/epolloutDataControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/epolloutDataControl.cpp -------------------------------------------------------------------------------- /src/errorHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/errorHandle.cpp -------------------------------------------------------------------------------- /src/sessionDataControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/sessionDataControl.cpp -------------------------------------------------------------------------------- /src/socketFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/socketFunction.cpp -------------------------------------------------------------------------------- /src/threadControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneApple/MultiplyThreadServer/HEAD/src/threadControl.cpp --------------------------------------------------------------------------------