[Vtun-Commit] CVS: The file 'vtun/configure.in' has been modified.
Status: Inactive
Brought to you by:
mtbishop
|
From: Bishop <mtbishop> - 2009-03-29 10:08:55
|
The following file was modified in vtun:
Name Old version New version Comment
---- ----------- ----------- -------
configure.in 1.19.2.1 1.19.2.2
The accompanying log:
rfe2636157 - Permit a delayed UDP connection to overcome unpredictable
NAT ports.
The diff of the modified file(s):
--- configure.in 29 Jun 2007 05:26:01 -0000 1.19.2.1
+++ configure.in 29 Mar 2009 10:08:51 -0000 1.19.2.2
@@ -41,6 +41,13 @@
SOCKS=no
)
+dnl Delayed UDP Start support
+AC_ARG_ENABLE(nathack,
+ --disable-nathack Do not enable Nat Hack code,
+ NATHACK=$enableval,
+ NATHACK=yes
+)
+
AC_ARG_WITH(ssl-headers,
--with-ssl-headers=DIR Crypto Include files location,
SSL_HDR_DIR="$withval"
@@ -212,6 +219,10 @@
)
fi
+if test "$NATHACK" = "yes"; then
+ AC_DEFINE(ENABLE_NAT_HACK)
+fi
+
if test "$SOCKS" = "yes"; then
AC_MSG_RESULT()
AC_CHECKING( for SOCKS Library ... )
|