diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-12-29 20:27:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-12-29 20:27:56 +0000 |
commit | 26b32cbd6fd5c919b1bceced4ad9a065daa0244b (patch) | |
tree | a89af05dbb6f310e808f7002edb7a7cf114f2108 /sys/netinet/ip_ipsp.h | |
parent | b836d3776194ea7f7b2b4516817f5cb258b642d0 (diff) |
fix _input/_output proto changes for tcp_signature; angelos@ ok
Diffstat (limited to 'sys/netinet/ip_ipsp.h')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index cf204a90083..d8476e3ee1d 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.51 1999/12/25 04:48:16 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.52 1999/12/29 20:27:55 mickey Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -551,9 +551,9 @@ extern int tcp_signature_tdb_attach __P((void)); extern int tcp_signature_tdb_init __P((struct tdb *, struct xformsw *, struct ipsecinit *)); extern int tcp_signature_tdb_zeroize __P((struct tdb *)); -extern struct mbuf *tcp_signature_tdb_input __P((struct mbuf *, struct tdb *)); +extern struct mbuf *tcp_signature_tdb_input __P((struct mbuf *, struct tdb *, int, int)); extern int tcp_signature_tdb_output __P((struct mbuf *, struct tdb *, - struct mbuf **)); + struct mbuf **, int, int)); /* Padding */ extern caddr_t m_pad(struct mbuf *, int, int); |