Преглед изворни кода

Precompiler directives to include sys/socket on OpenBSD.

Markus Klingenberger# пре 8 година
родитељ
комит
ceb27d614e
2 измењених фајлова са 6 додато и 0 уклоњено
  1. 3 0
      plugins/ua_network_tcp.c
  2. 3 0
      plugins/ua_network_udp.c

+ 3 - 0
plugins/ua_network_tcp.c

@@ -42,6 +42,9 @@
 # ifdef __QNX__
 #  include <sys/socket.h>
 # endif
+# ifdef __OpenBSD__
+#  include <sys/socket.h>
+# endif
 # ifndef __CYGWIN__
 #  include <netinet/tcp.h>
 # endif

+ 3 - 0
plugins/ua_network_udp.c

@@ -24,6 +24,9 @@
 #ifdef __QNX__
 #include <sys/socket.h>
 #endif
+#ifdef __OpenBSD__
+#include <sys/socket.h>
+#endif 
 # define CLOSESOCKET(S) close(S)
 
 #define MAXBACKLOG 100