Structs§
- Sock
- | RAII helper class that manages a socket.
| Mimics
std::unique_ptr
, but instead | of a pointer it contains a socket and | closes it automatically when it goes | out of scope. |
Constants§
- MAX_
WAIT_ FOR_ IO - | Maximum time to wait for I/O readiness. | | It will take up until this time to break | off in case of an interruption. |
- SOCK_
RECV - | If passed to
Wait()
, then it will wait | for readiness to read from the socket. | - SOCK_
SEND - | If passed to
Wait()
, then it will wait | for readiness to send to the socket. |
Traits§
- Reset
- Sock
Connect - SockGet
- Sock
GetSock Opt - Sock
Interface - Sock
IsConnected - Sock
Recv - Sock
Recv Until Terminator - Sock
Release - Sock
Send - Sock
Send Complete - Sock
Wait