Add first tcp server implementation

This commit is contained in:
2025-04-18 21:52:54 +02:00
commit 72121036a6
9 changed files with 653 additions and 0 deletions

8
tests/tcp_client.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "tcp.hpp"
#include <gtest/gtest.h>
TEST(TcpClient, Connect) {
tcp::NonBlockingClient client;
}