TDME2 1.9.121
UDPSocket.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <stddef.h>
6
7#if defined(_WIN32) && defined(_MSC_VER)
8 #define ssize_t int
9#endif
10
11#include <tdme/tdme.h>
16
17using std::string;
18
22
23/**
24 * Class representing a UDP socket
25 * @author Andreas Drewke
26 */
28public:
29 /**
30 * @brief public destructor
31 */
32 virtual ~UDPSocket();
33
34 /**
35 * @brief reads a datagram from socket
36 * @param from from host
37 * @param port from port
38 * @param buf buf
39 * @param bytes buf size
40 * @throws tdme::os::network::NetworkIOException
41 * @return datagram size or -1 if read would block
42 */
43 ssize_t read(string& from, unsigned int& port, void* buf, const size_t bytes);
44
45 /**
46 * @brief writes up to "bytes" bytes to socket
47 * @throws tdme::os::network::NetworkIOException
48 * @param to to host
49 * @param port to port
50 * @param buf buf
51 * @param bytes buf size
52 * @throws tdme::os::network::NetworkIOException
53 * @return datagram bytes written or -1 if write would block
54 */
55 ssize_t write(const string& to, const unsigned int port, void* buf, const size_t bytes);
56
57 /**
58 * @brief creates a udp socket
59 * @param socket socket
60 * @param ipVersion IP version
61 * @throws tdme::os::network::NetworkSocketException
62 */
63 static void create(UDPSocket& socket, IpVersion ipVersion);
64
65 /**
66 * @brief creates a udp server socket
67 * @param socket socket
68 * @param ip ip
69 * @param port port
70 * @throws tdme::os::network::NetworkSocketException
71 */
72 static void createServerSocket(UDPSocket& socket, const std::string& ip, const unsigned int port);
73
74 /**
75 * @brief creates a udp client socket
76 * @param socket socket
77 * @param ipVersion IP version
78 * @throws tdme::os::network::NetworkSocketException
79 */
80 static void createClientSocket(UDPSocket& socket, IpVersion ipVersion);
81};
82
Base exception class for network IO exceptions.
Base class of network sockets.
Definition: NetworkSocket.h:17
Class representing a UDP socket.
Definition: UDPSocket.h:27
static void createClientSocket(UDPSocket &socket, IpVersion ipVersion)
creates a udp client socket
Definition: UDPSocket.cpp:211
ssize_t read(string &from, unsigned int &port, void *buf, const size_t bytes)
reads a datagram from socket
Definition: UDPSocket.cpp:39
ssize_t write(const string &to, const unsigned int port, void *buf, const size_t bytes)
writes up to "bytes" bytes to socket
Definition: UDPSocket.cpp:105
static void create(UDPSocket &socket, IpVersion ipVersion)
creates a udp socket
Definition: UDPSocket.cpp:168
virtual ~UDPSocket()
public destructor
Definition: UDPSocket.cpp:36
static void createServerSocket(UDPSocket &socket, const std::string &ip, const unsigned int port)
creates a udp server socket
Definition: UDPSocket.cpp:186