Enable IPcomp by default.

PR:		kern/123587
MFC after:	5 days
This commit is contained in:
Bjoern A. Zeeb 2009-11-29 20:47:43 +00:00
parent 90b4c081d0
commit a77cb332ee
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199947
2 changed files with 6 additions and 4 deletions

View File

@ -29,7 +29,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd May 23, 2009
.Dd November 29, 2009
.Dt IPSEC 4
.Os
.Sh NAME
@ -215,7 +215,7 @@ To selectively enable/disable protocols, use
.It Sy "Name Default"
.It "net.inet.esp.esp_enable On"
.It "net.inet.ah.ah_enable On"
.It "net.inet.ipcomp.ipcomp_enable Off"
.It "net.inet.ipcomp.ipcomp_enable On"
.El
.Pp
In addition the following variables are accessible via
@ -408,6 +408,8 @@ size may alleviate this problem.
.Pp
The
.Tn IPcomp
protocol support is currently broken.
protocol may occationally error because of
.Xr zlib 3
problems.
.Pp
This documentation needs more review.

View File

@ -68,7 +68,7 @@
#include <opencrypto/deflate.h>
#include <opencrypto/xform.h>
VNET_DEFINE(int, ipcomp_enable) = 0;
VNET_DEFINE(int, ipcomp_enable) = 1;
VNET_DEFINE(struct ipcompstat, ipcompstat);
SYSCTL_DECL(_net_inet_ipcomp);