diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-02 11:09:21 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-02 11:09:21 +0000 |
commit | a2b3e5d4f78389cb4fb7a79915a41cac10ba084f (patch) | |
tree | f6c376a0cd02dbd8081bc7866ca3f11a08c9cd81 /sys | |
parent | ca8749da866e3867476d912e3b598900ab55d247 (diff) |
Replace references to ipsec6_sysctl (code is not yet compiled in)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet6/in6_proto.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c index 764d8f35e66..637b0172afd 100644 --- a/sys/netinet6/in6_proto.c +++ b/sys/netinet6/in6_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_proto.c,v 1.7 2000/01/02 04:52:26 itojun Exp $ */ +/* $OpenBSD: in6_proto.c,v 1.8 2000/01/02 11:09:20 angelos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -177,20 +177,22 @@ struct ip6protosw inet6sw[] = { ah6_input, 0, 0, 0, 0, 0, 0, 0, 0, - ipsec6_sysctl, + ah_sysctl, }, { SOCK_RAW, &inet6domain, IPPROTO_ESP, PR_ATOMIC|PR_ADDR, esp6_input, 0, 0, 0, 0, 0, 0, 0, 0, - ipsec6_sysctl, + esp_sysctl, }, +#if 0 { SOCK_RAW, &inet6domain, IPPROTO_IPCOMP, PR_ATOMIC|PR_ADDR, ipcomp6_input, 0, 0, 0, 0, 0, 0, 0, 0, ipsec6_sysctl, }, +#endif /* 0 */ #endif /* IPSEC */ #if NGIF > 0 { SOCK_RAW, &inet6domain, IPPROTO_IPV4, PR_ATOMIC|PR_ADDR, |