diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2010-08-03 02:07:25 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2010-08-03 02:07:25 +0000 |
commit | e99f5bfbc901ba43ddc18b147653091a0de7ef95 (patch) | |
tree | a4e9630fe698b3355a94a9fabea17ebe583bf116 | |
parent | 33e740e227e5cff99a3a45e0e3aab5b0d42ba8b1 (diff) |
include <ws2tcpip.h> for multicast sockopts on _WIN32
svn path=/trunk/externals/mrpeach/; revision=13740
-rw-r--r-- | net/udpsend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/udpsend.c b/net/udpsend.c index 114c02c..2ce6219 100644 --- a/net/udpsend.c +++ b/net/udpsend.c @@ -12,6 +12,7 @@ #include <string.h> #ifdef _WIN32 #include <winsock2.h> +#include <ws2tcpip.h> #else #include <sys/types.h> #include <sys/socket.h> |