Add socket abstraction

This commit is contained in:
Maurice Heumann
2025-03-20 15:17:43 +01:00
parent 2cb14a3555
commit 4da6642123
15 changed files with 437 additions and 71 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
#include <network/socket_factory.hpp>
namespace network
{
std::unique_ptr<socket_factory> create_static_socket_factory();
}