TDME2 1.9.121
|
Base class of network sockets. More...
#include <tdme/os/network/NetworkSocket.h>
Public Types | |
enum | IpVersion { IPV4 , IPV6 } |
Public Member Functions | |
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 IpVersion | determineIpVersion (const string &ip) |
Determine IP version. More... | |
Protected Attributes | |
IpVersion | ipVersion |
int | descriptor |
string | ip |
unsigned int | port |
Friends | |
class | KernelEventMechanism |
Base class of network sockets.
Definition at line 17 of file NetworkSocket.h.
enum IpVersion |
Enumerator | |
---|---|
IPV4 | |
IPV6 |
Definition at line 21 of file NetworkSocket.h.
NetworkSocket | ( | ) |
Protected constructor.
Definition at line 33 of file NetworkSocket.cpp.
|
virtual |
public destructor
Definition at line 36 of file NetworkSocket.cpp.
void bind | ( | const string & | ip, |
const unsigned int | port | ||
) |
Binds a socket to local ip and port.
ip | ip |
port | port |
tdme::os::network::NetworkSocketException |
Definition at line 51 of file NetworkSocket.cpp.
void close | ( | ) |
Closes the socket.
Definition at line 125 of file NetworkSocket.cpp.
|
static |
Determine IP version.
ip | ip |
Definition at line 134 of file NetworkSocket.cpp.
const std::string & getAddress | ( | ) |
returns the end points ip address
Definition at line 39 of file NetworkSocket.cpp.
const unsigned int getPort | ( | ) |
NetworkSocket & operator= | ( | NetworkSocket & | socket | ) |
copy operator
Definition at line 26 of file NetworkSocket.cpp.
void setNonBlocked | ( | ) |
sets the socket non blocked
tdme::os::network::NetworkSocketException |
Definition at line 99 of file NetworkSocket.cpp.
void shutdown | ( | ) |
shuts socket down for reading and writing
Definition at line 47 of file NetworkSocket.cpp.
|
friend |
Definition at line 18 of file NetworkSocket.h.
|
protected |
Definition at line 83 of file NetworkSocket.h.
|
protected |
Definition at line 84 of file NetworkSocket.h.
|
protected |
Definition at line 82 of file NetworkSocket.h.
|
protected |
Definition at line 85 of file NetworkSocket.h.