diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2021-10-24 14:24:30 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2021-10-24 14:24:30 +0000 |
commit | 762427d35da6bb88aa7fa12c067f9c9581ae041a (patch) | |
tree | 09ff22dbea5020756b61efa6cfee8ee46f68fb2d /sys/netinet/ip_ah.c | |
parent | 19ce5d1571ee51bcd38edfc9957f59d9e2d174be (diff) |
Pass the error of the IPsec callback to the caller. The dropped
counter is handled there.
OK tobhe@
Diffstat (limited to 'sys/netinet/ip_ah.c')
-rw-r--r-- | sys/netinet/ip_ah.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c index ca347c5aba9..3d2f28e77e5 100644 --- a/sys/netinet/ip_ah.c +++ b/sys/netinet/ip_ah.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah.c,v 1.160 2021/10/23 22:19:37 bluhm Exp $ */ +/* $OpenBSD: ip_ah.c,v 1.161 2021/10/24 14:24:29 bluhm Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -721,13 +721,7 @@ ah_input(struct mbuf **mp, struct tdb *tdb, int skip, int protoff) /* Release the crypto descriptors */ crypto_freereq(crp); - error = ah_input_cb(tdb, tc, m, clen); - if (error) { - ipsecstat_inc(ipsec_idrops); - tdb->tdb_idrops++; - } - - return 0; + return ah_input_cb(tdb, tc, m, clen); drop: m_freemp(mp); @@ -1192,13 +1186,7 @@ ah_output(struct mbuf *m, struct tdb *tdb, int skip, int protoff) /* Release the crypto descriptors */ crypto_freereq(crp); - error = ah_output_cb(tdb, tc, m, ilen, olen); - if (error) { - ipsecstat_inc(ipsec_odrops); - tdb->tdb_odrops++; - } - - return 0; + return ah_output_cb(tdb, tc, m, ilen, olen); drop: m_freem(m); |