diff options
author | Tobias Heider <tobhe@cvs.openbsd.org> | 2021-10-24 18:15:59 +0000 |
---|---|---|
committer | Tobias Heider <tobhe@cvs.openbsd.org> | 2021-10-24 18:15:59 +0000 |
commit | 45b1bea4b11d2420bea5874f47944b05075dd1b0 (patch) | |
tree | 12367239f604317e4c2e946c2c72cce2dee8f22f /sys/netinet/ip_ipsp.h | |
parent | a2e27f6d5828a33928151a40b864dd5a71931f0a (diff) |
Refactor ipcomp_input() and ipcomp_output(). Remove obsolete code related
to old crypto API.
ok bluhm@
Diffstat (limited to 'sys/netinet/ip_ipsp.h')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index a3712372fa3..f79d393197b 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.214 2021/10/24 17:08:27 bluhm Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.215 2021/10/24 18:15:58 tobhe Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -607,10 +607,7 @@ int ipcomp_attach(void); int ipcomp_init(struct tdb *, const struct xformsw *, struct ipsecinit *); int ipcomp_zeroize(struct tdb *); int ipcomp_input(struct mbuf **, struct tdb *, int, int); -int ipcomp_input_cb(struct tdb *, struct tdb_crypto *, struct mbuf **, int); int ipcomp_output(struct mbuf *, struct tdb *, int, int); -int ipcomp_output_cb(struct tdb *, struct tdb_crypto *, struct mbuf *, int, - int); int ipcomp_sysctl(int *, u_int, void *, size_t *, void *, size_t); int ipcomp4_input(struct mbuf **, int *, int, int); #ifdef INET6 |