7 #define BUF_CAST(buf) ((char*)buf)
9 #include <sys/socket.h>
10 #include <netinet/in.h>
11 #include <arpa/inet.h>
12 #define BUF_CAST(buf) ((void*)buf)
27 #define SO_REUSEOPTION SO_REUSEADDR
28#elif defined(__linux__)
30 #define SO_REUSEOPTION SO_REUSEADDR
33 #define SO_REUSEOPTION SO_REUSEPORT
36UDPSocket::~UDPSocket() {
39ssize_t
UDPSocket::read(
string& from,
unsigned int& port,
void* buf,
const size_t bytes) {
49 sinLen =
sizeof(sinIPV4);
56 sinLen =
sizeof(sinIPV6);
60 ssize_t bytesRead = ::recvfrom(
descriptor,
BUF_CAST(buf), bytes, 0, (
struct sockaddr *)sin, &sinLen);
61 if (bytesRead == -1) {
63 auto wsaError = WSAGetLastError();
64 if (wsaError == WSAEWOULDBLOCK ||
65 wsaError == WSAECONNRESET) {
68 string msg =
"error while reading from socket: ";
69 msg+= to_string(wsaError);
74 if (errno == EAGAIN) {
77 string msg =
"error while reading from socket: ";
78 msg+= strerror(errno);
88 char ipv4AddressString[INET_ADDRSTRLEN];
89 from = inet_ntop(AF_INET, &sinIPV4.sin_addr, ipv4AddressString, INET_ADDRSTRLEN) == NULL?
"127.0.0.1":ipv4AddressString;
90 port = ntohs(sinIPV4.sin_port);
95 char ipv6AddressString[INET6_ADDRSTRLEN];
96 from = inet_ntop(AF_INET6, &sinIPV6.sin6_addr, ipv6AddressString, INET6_ADDRSTRLEN) == NULL?
"::1":ipv6AddressString;
97 port = ntohs(sinIPV6.sin6_port);
105ssize_t
UDPSocket::write(
const string& to,
const unsigned int port,
void* buf,
const size_t bytes) {
107 socklen_t sinLen = 0;
110 sockaddr_in6 sinIPV6;
114 sinLen =
sizeof(sinIPV4);
115 memset(&sinIPV4, 0, sinLen);
116 sinIPV4.sin_family = AF_INET;
117 sinIPV4.sin_port = htons(
port);
118 sinIPV4.sin_addr.s_addr = inet_addr(to.c_str());
124 sinLen =
sizeof(sinIPV6);
125 memset(&sinIPV6, 0, sinLen);
126 sinIPV6.sin6_family = AF_INET6;
127 sinIPV6.sin6_port = htons(
port);
128 inet_pton(AF_INET6, to.c_str(), &sinIPV6.sin6_addr);
135 #if defined(__APPLE__) || defined(_WIN32)
136 ssize_t bytesWritten = ::sendto(
descriptor,
BUF_CAST(buf), bytes, 0, (
const struct sockaddr*)sin, sinLen);
138 ssize_t bytesWritten = ::sendto(
descriptor,
BUF_CAST(buf), bytes, MSG_NOSIGNAL, (
const struct sockaddr*)sin, sinLen);
142 if (bytesWritten == -1) {
144 auto wsaError = WSAGetLastError();
145 if (wsaError == WSAEWOULDBLOCK) {
148 string msg =
"error while writing to socket: ";
149 msg+= to_string(wsaError);
154 if (errno == EAGAIN) {
157 string msg =
"error while writing to socket: ";
158 msg+= strerror(errno);
172 string msg =
"Could not create socket: ";
173 msg+= strerror(errno);
178 if (setsockopt(socket.
descriptor, SOL_SOCKET, SO_NOSIGPIPE, (
void*)&flag,
sizeof(flag)) == -1) {
179 string msg =
"Could not set no sig pipe on socket: ";
180 msg+= strerror(errno);
197 string msg =
"Could not set reuse port on socket: ";
198 msg+= strerror(errno);
Base exception class for network IO exceptions.
void bind(const string &ip, const unsigned int port)
Binds a socket to local ip and port.
void close()
Closes the socket.
static IpVersion determineIpVersion(const string &ip)
Determine IP version.
void setNonBlocked()
sets the socket non blocked
Class representing a UDP socket.
static void createClientSocket(UDPSocket &socket, IpVersion ipVersion)
creates a udp client socket
ssize_t read(string &from, unsigned int &port, void *buf, const size_t bytes)
reads a datagram from socket
ssize_t write(const string &to, const unsigned int port, void *buf, const size_t bytes)
writes up to "bytes" bytes to socket
static void create(UDPSocket &socket, IpVersion ipVersion)
creates a udp socket
static void createServerSocket(UDPSocket &socket, const std::string &ip, const unsigned int port)
creates a udp server socket