* generic/udp_tcl.h: Fixed the -ttl option for Windows.
authorpatthoyts <patthoyts>
Mon, 22 Nov 2004 10:25:37 +0000 (10:25 +0000)
committerpatthoyts <patthoyts>
Mon, 22 Nov 2004 10:25:37 +0000 (10:25 +0000)
ChangeLog
generic/udp_tcl.h

index c86949e9331ccec0f198789c21e9f95e25cd09c8..c057fd514c3e9960557ad1a50ad344fb4675124e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
-2004-11-22  Pat Thoyts  <pat@zsplat.freeserve.co.uk>
+2004-11-22  Pat Thoyts  <patthoyts@users.sourceforge.net>
 
+       * generic/udp_tcl.h: Fixed the -ttl option for Windows.
        * generic/udp_tcl.c: Added support for setting and retrieving the
        TTL option on the socket. The default is specified by the system
        but can be set for individual sockets. 
index fdcf8998c7c4e295814b628a146fe6242253ede3..2fb38ed9b69c785d4e76f3828f1cd4ed14b61ca1 100644 (file)
 #define TCL_STORAGE_CLASS DLLEXPORT
 #endif /* BUILD_udp */
 
+/* Windows doesn't declare SOL_IP. It uses this instead... */
+#ifndef SOL_IP
+#define SOL_IP IPPROTO_IP
+#endif /* SOL_IP */
+
 #ifdef WIN32
 
 typedef u_short uint16_t;