diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-08-28 15:15:03 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-08-28 15:15:03 +0000 |
commit | 9a69e5e5080fd0727e7e2c1579a9b61513fc89ce (patch) | |
tree | 377f95fb32957c43286f01c4e6b79445531edbc9 /sys/netinet6 | |
parent | d217ce25e4d00cfe24084a832ee88ced2533e308 (diff) |
Add per-TDB counters and a new SADB extension to export them to
userland.
Inputs from markus@, ok sthen@
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_output.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 4b9fffbbff2..e6177f44346 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.238 2018/07/12 15:51:50 mpi Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.239 2018/08/28 15:15:02 mpi Exp $ */ /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */ /* @@ -2788,8 +2788,10 @@ ip6_output_ipsec_send(struct tdb *tdb, struct mbuf *m, int tunalready, int fwd) /* Callee frees mbuf */ error = ipsp_process_packet(m, tdb, AF_INET6, tunalready); - if (error) + if (error) { ipsecstat_inc(ipsec_odrops); + tdb->tdb_odrops++; + } return error; } #endif /* IPSEC */ |