Split tcp.hpp and tcp.cpp into separate files for server and client

This commit is contained in:
2025-04-19 22:25:46 +02:00
parent da6159d706
commit 2d8cfb5123
9 changed files with 555 additions and 512 deletions

View File

@@ -4,7 +4,8 @@
#include <cstring>
// Project includes
#include "tcp.hpp"
#include "tcp_server.hpp"
#include "tcp_client.hpp"
TEST(TcpServer, Accept) {