diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-05-24 09:13:58 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-05-24 09:13:58 +0000 |
commit | 775a6ac2796a55bad3489d8532fd138d232fd2c4 (patch) | |
tree | 9bfc8630549cfeb47ec741d1dafab3094d0c1bf5 /errlevel.h | |
parent | Added "redirect-private" option which allows private subnets (diff) | |
download | openvpn-775a6ac2796a55bad3489d8532fd138d232fd2c4.tar.xz |
Added new 'autolocal' redirect-gateway flag. When enabled, the OpenVPN
client will examine the routing table and determine whether (a) the
OpenVPN server is reachable via a locally connected interface, or (b)
traffic to the server must be forwarded through the default router.
Only add a special bypass route for the OpenVPN server if (b) is true.
If (a) is true, behave as if the 'local' flag is specified, and do not
add a bypass route.
The new 'autolocal' flag depends on the non-portable test_local_addr()
function in route.c, which is currently only implemented for Windows.
The 'autolocal' flag will act as a no-op on platforms that have not
yet defined a test_local_addr() function.
Increased TLS_CHANNEL_BUF_SIZE to 2048 from 1024 (this will allow for
more option content to be pushed from server to client).
Raised D_MULTI_DROPPED debug level to 4 from 3.
Version 2.1_rc16b.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4446 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | errlevel.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -88,14 +88,13 @@ #define D_BACKTRACK LOGLEV(3, 36, 0) /* show replay backtracks */ #define D_AUTH LOGLEV(3, 37, 0) /* show user/pass auth info */ #define D_MULTI_LOW LOGLEV(3, 38, 0) /* show point-to-multipoint low-freq debug info */ -#define D_MULTI_DROPPED LOGLEV(3, 39, 0) /* show point-to-multipoint packet drops */ -#define D_PLUGIN LOGLEV(3, 40, 0) /* show plugin calls */ -#define D_MANAGEMENT LOGLEV(3, 41, 0) /* show --management info */ -#define D_SCHED_EXIT LOGLEV(3, 42, 0) /* show arming of scheduled exit */ -#define D_ROUTE_QUOTA LOGLEV(3, 43, 0) /* show route quota exceeded messages */ -#define D_OSBUF LOGLEV(3, 44, 0) /* show socket/tun/tap buffer sizes */ -#define D_PS_PROXY LOGLEV(3, 45, 0) /* messages related to --port-share option */ -#define D_PF_INFO LOGLEV(3, 46, 0) /* packet filter informational messages */ +#define D_PLUGIN LOGLEV(3, 39, 0) /* show plugin calls */ +#define D_MANAGEMENT LOGLEV(3, 40, 0) /* show --management info */ +#define D_SCHED_EXIT LOGLEV(3, 41, 0) /* show arming of scheduled exit */ +#define D_ROUTE_QUOTA LOGLEV(3, 42, 0) /* show route quota exceeded messages */ +#define D_OSBUF LOGLEV(3, 43, 0) /* show socket/tun/tap buffer sizes */ +#define D_PS_PROXY LOGLEV(3, 44, 0) /* messages related to --port-share option */ +#define D_PF_INFO LOGLEV(3, 45, 0) /* packet filter informational messages */ #define D_SHOW_PARMS LOGLEV(4, 50, 0) /* show all parameters on program initiation */ #define D_SHOW_OCC LOGLEV(4, 51, 0) /* show options compatibility string */ @@ -104,6 +103,7 @@ #define D_MBUF LOGLEV(4, 54, 0) /* mbuf.[ch] routines */ #define D_PACKET_TRUNC_ERR LOGLEV(4, 55, 0) /* PACKET_TRUNCATION_CHECK */ #define D_PF_DROPPED LOGLEV(4, 56, 0) /* packet filter dropped a packet */ +#define D_MULTI_DROPPED LOGLEV(4, 57, 0) /* show point-to-multipoint packet drops */ #define D_LOG_RW LOGLEV(5, 0, 0) /* Print 'R' or 'W' to stdout for read/write */ |