11 { t.bind_to(end_point) };
12 { t.connect_to(end_point) };
13 { t.listen_for_connections(len) };
14 { t.accept_connection() } -> std::same_as<T>;
15 { t.receive_data(buffer, len) } -> std::same_as<int64_t>;
16 { t.receive_data_from(buffer, len, end_point) } -> std::same_as<int64_t>;
17 { t.send_data(buffer, len) } -> std::same_as<int64_t>;
18 { t.send_data_to(buffer, len, end_point) } -> std::same_as<int64_t>;
Represents the address + port that identifies a connection. Initialized by {Address,...
Definition Addresses.hpp:29