TDME2 1.9.121
|
Class representing a UDP socket. More...
#include <tdme/os/network/UDPSocket.h>
Public Member Functions | |
virtual | ~UDPSocket () |
public destructor More... | |
ssize_t | read (string &from, unsigned int &port, void *buf, const size_t bytes) |
reads a datagram from socket More... | |
ssize_t | write (const string &to, const unsigned int port, void *buf, const size_t bytes) |
writes up to "bytes" bytes to 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 (UDPSocket &socket, IpVersion ipVersion) |
creates a udp socket More... | |
static void | createServerSocket (UDPSocket &socket, const std::string &ip, const unsigned int port) |
creates a udp server socket More... | |
static void | createClientSocket (UDPSocket &socket, IpVersion ipVersion) |
creates a udp client 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 UDP socket.
Definition at line 27 of file UDPSocket.h.
|
virtual |
public destructor
Definition at line 36 of file UDPSocket.cpp.
creates a udp socket
socket | socket |
ipVersion | IP version |
tdme::os::network::NetworkSocketException |
Definition at line 168 of file UDPSocket.cpp.
creates a udp client socket
socket | socket |
ipVersion | IP version |
tdme::os::network::NetworkSocketException |
Definition at line 211 of file UDPSocket.cpp.
|
static |
creates a udp server socket
socket | socket |
ip | ip |
port | port |
tdme::os::network::NetworkSocketException |
Definition at line 186 of file UDPSocket.cpp.
ssize_t read | ( | string & | from, |
unsigned int & | port, | ||
void * | buf, | ||
const size_t | bytes | ||
) |
reads a datagram from socket
from | from host |
port | from port |
buf | buf |
bytes | buf size |
tdme::os::network::NetworkIOException |
Definition at line 39 of file UDPSocket.cpp.
ssize_t write | ( | const string & | to, |
const unsigned int | port, | ||
void * | buf, | ||
const size_t | bytes | ||
) |
writes up to "bytes" bytes to socket
tdme::os::network::NetworkIOException |
to | to host |
port | to port |
buf | buf |
bytes | buf size |
tdme::os::network::NetworkIOException |
Definition at line 105 of file UDPSocket.cpp.