summaryrefslogtreecommitdiffstats
path: root/syshead.h
diff options
context:
space:
mode:
authorJuanJo Ciarlante <jjo+ml@google.com>2011-05-26 19:01:42 +0200
committerDavid Sommerseth <davids@redhat.com>2011-08-25 20:19:58 +0200
commiteb23089183745853fac9414d45a559a478ef51d6 (patch)
tree9830a2b6240d98ab62ea4bf901f30825ebf6acf9 /syshead.h
parent1ffdb2c9662c3af1f992183435b1afb006dfdc6c (diff)
downloadopenvpn-eb23089183745853fac9414d45a559a478ef51d6.tar.gz
openvpn-eb23089183745853fac9414d45a559a478ef51d6.tar.xz
openvpn-eb23089183745853fac9414d45a559a478ef51d6.zip
USE_PF_INET6 by default for v2.3
- put all #ifdef'd code in place, kill the cpp symbol, - thus in v2.3 it's not actually possible to --disable-ipv6 :) RATIONALE: #1 some wacky compilers choke on #ifdef'd constructions for concatenated strings, and given that: #2 v2.3 has already transport ipv6 by default => doesn't justify putting effort on #1 to keep USE_PF_INET6 ifdef wraps. Signed-off-by: JuanJo Ciarlante <jjo+ml@google.com> Signed-off-by: Samuli Seppänen <samuli@openvpn.net> Acked-by: David Sommerseth <davids@redhat.com> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'syshead.h')
-rw-r--r--syshead.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/syshead.h b/syshead.h
index c6b131b..87cc369 100644
--- a/syshead.h
+++ b/syshead.h
@@ -29,7 +29,7 @@
* Only include if not during configure
*/
#ifdef WIN32
-/* USE_PF_INET6: win32 ipv6 exists only after 0x0501 (XP) */
+/* PF_INET6: win32 ipv6 exists only after 0x0501 (XP) */
#define WINVER 0x0501
#endif
#ifndef PACKAGE_NAME
@@ -344,7 +344,7 @@
#include <iphlpapi.h>
#include <NtDDNdis.h>
#include <wininet.h>
-/* The following two headers are needed of USE_PF_INET6 */
+/* The following two headers are needed of PF_INET6 */
#include <winsock2.h>
#include <ws2tcpip.h>
#endif