TDME2 1.9.121
|
Class representing a TCP socket. More...
#include <tdme/os/network/TCPSocket.h>
Public Member Functions | |
virtual | ~TCPSocket () |
Public destructor. More... | |
size_t | read (void *buf, const size_t bytes) |
Reads up to "bytes" bytes from socket. More... | |
size_t | write (void *buf, const size_t bytes) |
Writes up to "bytes" bytes to socket. More... | |
void | connect (const string &ip, const unsigned int port) |
Connects a socket to given IP and port. More... | |
void | setTCPNoDelay () |
Disables nagle's algorithm. More... | |
bool | accept (TCPSocket &_socket) |
Accepts a socket from a server socket. More... | |
![]() | |
NetworkSocket & | operator= (NetworkSocket &socket) |
copy operator More... | |
NetworkSocket () | |
Protected constructor. More... | |
virtual | ~NetworkSocket () |
public destructor More... | |
const string & | getAddress () |
returns the end points ip address More... | |
const unsigned int | getPort () |
returns the end points port More... | |
void | shutdown () |
shuts socket down for reading and writing More... | |
void | bind (const string &ip, const unsigned int port) |
Binds a socket to local ip and port. More... | |
void | setNonBlocked () |
sets the socket non blocked More... | |
void | close () |
Closes the socket. More... | |
Static Public Member Functions | |
static void | create (TCPSocket &socket, IpVersion ipVersion) |
Creates a TCP socket. More... | |
static void | createServerSocket (TCPSocket &socket, const std::string &ip, const unsigned int port, const int backlog) |
Creates a TCP server socket. More... | |
![]() | |
static IpVersion | determineIpVersion (const string &ip) |
Determine IP version. More... | |
Additional Inherited Members | |
![]() | |
enum | IpVersion { IPV4 , IPV6 } |
![]() | |
IpVersion | ipVersion |
int | descriptor |
string | ip |
unsigned int | port |
Class representing a TCP socket.
Definition at line 15 of file TCPSocket.h.
|
virtual |
bool accept | ( | TCPSocket & | _socket | ) |
Accepts a socket from a server socket.
_socket | socket |
tdme::os::network::NetworkSocketException |
Definition at line 182 of file TCPSocket.cpp.
void connect | ( | const string & | ip, |
const unsigned int | port | ||
) |
Connects a socket to given IP and port.
ip | ip |
port | port |
tdme::os::network::NetworkSocketException |
Definition at line 99 of file TCPSocket.cpp.
Creates a TCP socket.
socket | socket |
ipVersion | IP version |
tdme::os::network::NetworkSocketException |
Definition at line 81 of file TCPSocket.cpp.
|
static |
Creates a TCP server socket.
socket | socket |
ip | ip |
port | port |
backlog | backlog |
tdme::os::network::NetworkSocketException |
Definition at line 146 of file TCPSocket.cpp.
size_t read | ( | void * | buf, |
const size_t | bytes | ||
) |
Reads up to "bytes" bytes from socket.
buf | buffer to write to |
bytes | bytes to receive |
tdme::os::network::NetworkIOException |
Definition at line 46 of file TCPSocket.cpp.
void setTCPNoDelay | ( | ) |
Disables nagle's algorithm.
tdme::os::network::NetworkSocketException |
Definition at line 169 of file TCPSocket.cpp.
size_t write | ( | void * | buf, |
const size_t | bytes | ||
) |
Writes up to "bytes" bytes to socket.
buf | buffer to read from |
bytes | bytes to send |
tdme::os::network::NetworkIOException |
Definition at line 60 of file TCPSocket.cpp.