diff options
author | Jean-Jacques Bernard-Gundol <jjbg@cvs.openbsd.org> | 2001-07-05 08:42:16 +0000 |
---|---|---|
committer | Jean-Jacques Bernard-Gundol <jjbg@cvs.openbsd.org> | 2001-07-05 08:42:16 +0000 |
commit | 39f73f2430106e78387a9e4ab63d9ad3a07d5f5e (patch) | |
tree | b11a7f81cebdb8c7f27b9ba00d3a3ecac97fa982 /sbin/sysctl/sysctl.c | |
parent | bb296cd3fec3e4086fdbb49949d517554ec6792e (diff) |
IPComp support. angelos@ ok.
Diffstat (limited to 'sbin/sysctl/sysctl.c')
-rw-r--r-- | sbin/sysctl/sysctl.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index fa613e589d9..84a7d302eef 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.73 2001/06/27 06:16:47 art Exp $ */ +/* $OpenBSD: sysctl.c,v 1.74 2001/07/05 08:42:15 jjbg Exp $ */ /* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)sysctl.c 8.5 (Berkeley) 5/9/95"; #else -static char *rcsid = "$OpenBSD: sysctl.c,v 1.73 2001/06/27 06:16:47 art Exp $"; +static char *rcsid = "$OpenBSD: sysctl.c,v 1.74 2001/07/05 08:42:15 jjbg Exp $"; #endif #endif /* not lint */ @@ -80,6 +80,7 @@ static char *rcsid = "$OpenBSD: sysctl.c,v 1.73 2001/06/27 06:16:47 art Exp $"; #include <netinet/tcp_timer.h> #include <netinet/tcp_var.h> #include <netinet/ip_gre.h> +#include <netinet/ip_ipcomp.h> #ifdef INET6 #include <netinet/ip6.h> @@ -1212,6 +1213,7 @@ struct ctlname ahname[] = AHCTL_NAMES; struct ctlname etheripname[] = ETHERIPCTL_NAMES; struct ctlname grename[] = GRECTL_NAMES; struct ctlname mobileipname[] = MOBILEIPCTL_NAMES; +struct ctlname ipcompname[] = IPCOMPCTL_NAMES; struct list inetlist = { inetname, IPPROTO_MAXID }; struct list inetvars[] = { { ipname, IPCTL_MAXID }, /* ip */ @@ -1312,6 +1314,17 @@ struct list inetvars[] = { { 0, 0 }, { 0, 0 }, { etheripname, ETHERIPCTL_MAXID }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { ipcompname, IPCOMPCTL_MAXID }, }; struct list kernmalloclist = { kernmallocname, KERN_MALLOC_MAXID }; |