gitextract_ndbhzy7z/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── cmake.yml ├── .gitignore ├── .ignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── build.sh ├── docker-compose.yml ├── examples/ │ ├── client_example.cpp │ └── server_example.cpp ├── include/ │ ├── client.h │ ├── client_event.h │ ├── client_observer.h │ ├── common.h │ ├── file_descriptor.h │ ├── pipe_ret_t.h │ ├── server_observer.h │ ├── tcp_client.h │ └── tcp_server.h └── src/ ├── client.cpp ├── common.cpp ├── pipe_ret_t.cpp ├── tcp_client.cpp └── tcp_server.cpp