summaryrefslogtreecommitdiffstats
path: root/src/UDPServer
diff options
context:
space:
mode:
Diffstat (limited to 'src/UDPServer')
-rw-r--r--src/UDPServer/UDPServer.cpp10
-rw-r--r--src/UDPServer/UDPServer.h8
2 files changed, 17 insertions, 1 deletions
diff --git a/src/UDPServer/UDPServer.cpp b/src/UDPServer/UDPServer.cpp
index cd36647..854835a 100644
--- a/src/UDPServer/UDPServer.cpp
+++ b/src/UDPServer/UDPServer.cpp
@@ -41,6 +41,16 @@
* \param[in] addr The address we receive on.
* \param[in] port The port we receive from.
*/
+
+#include "UDPServer.h"
+
+ #include <string.h>
+ #include <unistd.h>
+
+ #ifndef SOCK_CLOEXEC
+ #define SOCK_CLOEXEC 0
+ #endif
+
UDPServer::UDPServer(const std::string& addr, int port)
: f_port(port)
, f_addr(addr)
diff --git a/src/UDPServer/UDPServer.h b/src/UDPServer/UDPServer.h
index 7eef796..22f33b3 100644
--- a/src/UDPServer/UDPServer.h
+++ b/src/UDPServer/UDPServer.h
@@ -14,7 +14,13 @@
#include <sys/socket.h>
#include <netdb.h>
#include <stdexcept>
-#include <string>
+#include <cstring>
+
+class udp_client_server_runtime_error : public std::runtime_error
+{
+public:
+ udp_client_server_runtime_error(const char *w) : std::runtime_error(w) {}
+};
class UDPServer
{