├── Makefile ├── README.md └── src ├── AsyncServer.h ├── ClientDescriptor.h ├── ExampleClient.cpp ├── ExampleClient.h └── Main.cpp /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/README.md -------------------------------------------------------------------------------- /src/AsyncServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/src/AsyncServer.h -------------------------------------------------------------------------------- /src/ClientDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/src/ClientDescriptor.h -------------------------------------------------------------------------------- /src/ExampleClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/src/ExampleClient.cpp -------------------------------------------------------------------------------- /src/ExampleClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/src/ExampleClient.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MalwareTech/SimpleEpollServer/HEAD/src/Main.cpp --------------------------------------------------------------------------------