TCP/IP connection to a client.
#include <Connection.hpp>
|
| Connection (Server &server, SOCKET fd) |
|
long long int | getServerMinusClientTime (void) const |
|
void | hangup () |
|
virtual bool | isClosed () const |
|
|
void | performReading (void) |
| Receives data from a TCP/IP connection and stores it in the read buffer.
|
|
void | performWriting (void) |
| Sends the contents of the write buffer over a TCP/IP connection.
|
|
void | prepareSelectFds (fd_set &read_fds, fd_set &write_fds, int &fd_max) |
|
| Socket (Server &server, SOCKET fd) |
|
int | readNonblocking (void *buf, int count) |
|
int | writeNonblocking (const void *buf, int count) |
|
|
char | read_buff [120] |
|
char * | read_buff_end |
|
char | write_buff [120] |
|
char * | write_buff_end |
|
Server & | server |
|
SOCKET | fd |
|