├── .github └── workflows │ ├── LinuxBuild.yml │ └── LinuxBuildAndTest.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── TcpClient.cpp ├── TcpClient.hpp ├── TcpConnection.cpp ├── TcpConnection.hpp ├── TcpServer.cpp ├── TcpServer.hpp └── tests ├── CMakeLists.txt └── Test.cpp /.github/workflows/LinuxBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/.github/workflows/LinuxBuild.yml -------------------------------------------------------------------------------- /.github/workflows/LinuxBuildAndTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/.github/workflows/LinuxBuildAndTest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *build 2 | *.clang-format -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/README.md -------------------------------------------------------------------------------- /TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpClient.cpp -------------------------------------------------------------------------------- /TcpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpClient.hpp -------------------------------------------------------------------------------- /TcpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpConnection.cpp -------------------------------------------------------------------------------- /TcpConnection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpConnection.hpp -------------------------------------------------------------------------------- /TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpServer.cpp -------------------------------------------------------------------------------- /TcpServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/TcpServer.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandrofsevilla/boost-tcp-server-client/HEAD/tests/Test.cpp --------------------------------------------------------------------------------