29 size_t read(
void* buf,
const size_t bytes);
38 size_t write(
void* buf,
const size_t bytes);
Base class of network sockets.
Class representing a TCP socket.
size_t read(void *buf, const size_t bytes)
Reads up to "bytes" bytes from socket.
size_t write(void *buf, const size_t bytes)
Writes up to "bytes" bytes to socket.
bool accept(TCPSocket &_socket)
Accepts a socket from a server socket.
virtual ~TCPSocket()
Public destructor.
static void create(TCPSocket &socket, IpVersion ipVersion)
Creates a TCP socket.
static void createServerSocket(TCPSocket &socket, const std::string &ip, const unsigned int port, const int backlog)
Creates a TCP server socket.
void setTCPNoDelay()
Disables nagle's algorithm.
void connect(const string &ip, const unsigned int port)
Connects a socket to given IP and port.