diff options
Diffstat (limited to '')
-rw-r--r-- | WebServer/Socket.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebServer/Socket.cpp b/WebServer/Socket.cpp index 695d18b2b..59efc8127 100644 --- a/WebServer/Socket.cpp +++ b/WebServer/Socket.cpp @@ -46,6 +46,10 @@ #define MSG_NOSIGNAL (0)
#endif
+#ifndef MSG_NOSIGNAL
+ #define MSG_NOSIGNAL 0
+#endif // MSG_NOSIGNAL
+
using namespace std;
int Socket::nofSockets_= 0;
|