diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-06 07:14:37 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-06 07:14:37 +0000 |
commit | 14cd26d40a0951eaf4cfd5436ffce5c26fae0607 (patch) | |
tree | 35a79f3fa03ee03935738d445721807daa954fee /sys/netinet/ip_ah_old.c | |
parent | 07fd058044fbd8138e453c2dd542b4a80aafc864 (diff) |
New ESP code that's v4 and v6 friendly.
Diffstat (limited to 'sys/netinet/ip_ah_old.c')
-rw-r--r-- | sys/netinet/ip_ah_old.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/netinet/ip_ah_old.c b/sys/netinet/ip_ah_old.c index c669107f47a..8e2a6f62458 100644 --- a/sys/netinet/ip_ah_old.c +++ b/sys/netinet/ip_ah_old.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah_old.c,v 1.25 1999/10/29 02:10:01 angelos Exp $ */ +/* $OpenBSD: ip_ah_old.c,v 1.26 1999/12/06 07:14:35 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -173,7 +173,7 @@ ah_old_zeroize(struct tdb *tdbp) */ struct mbuf * -ah_old_input(struct mbuf *m, struct tdb *tdb) +ah_old_input(struct mbuf *m, struct tdb *tdb, int skip, int protoff) { struct auth_hash *ahx = (struct auth_hash *) tdb->tdb_authalgxform; struct ip *ip, ipo; @@ -375,7 +375,8 @@ ah_old_input(struct mbuf *m, struct tdb *tdb) } int -ah_old_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp) +ah_old_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip, + int protoff) { struct auth_hash *ahx = (struct auth_hash *) tdb->tdb_authalgxform; struct ip *ip, ipo; |