cpp_sockets
cpp_sockets copied to clipboard
A header-only implementation of TCP and UDP sockets in C++
Results
1
cpp_sockets issues
Sort by
recently updated
recently updated
newest added
```cpp const int invalid_protocol_return = 1; const int invalid_sockettype_return = 2; const int udp_protocol = 1; const int tcp_protocol = 2; const int client_socket = 1; const int server_socket =...