diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-09 10:11:12 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-09 10:11:12 +0000 |
commit | 622554ad2d348a532e3e529525f0617fd814ccc4 (patch) | |
tree | c8c5bb496cd6567b08f4959bc7af192fc4cc7621 | |
parent | 246772fde2ba8fc0d37f2a31d4bddafd239d4997 (diff) |
Add v4/v6 wrapper routine definitions.
-rw-r--r-- | sys/netinet/ip_ah.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/netinet/ip_ah.h b/sys/netinet/ip_ah.h index e822d592c1d..bebee36834c 100644 --- a/sys/netinet/ip_ah.h +++ b/sys/netinet/ip_ah.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah.h,v 1.18 1999/12/07 08:57:59 angelos Exp $ */ +/* $OpenBSD: ip_ah.h,v 1.19 1999/12/09 10:11:11 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -102,6 +102,10 @@ void ah_input __P((struct mbuf *, ...)); int ah_output __P((struct mbuf *, struct tdb *, struct mbuf **)); int ah_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); +#ifdef INET6 +void ah6_input __P((struct mbuf *, ...)); +#endif /* INET6 */ + extern int ah_enable; struct ahstat ahstat; #endif /* _KERNEL */ |