diff options
author | joe <joe@FreeBSD.org> | 2000-10-29 01:05:09 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-10-29 01:05:09 +0000 |
commit | 1ade5b1eab73d10a65241fbbd57c9c5fc68012c0 (patch) | |
tree | 76552212b318f1173f304e318d9402b7ce7993b5 /sys/netinet6 | |
parent | cdd71a9d715a944e7fc2d70376e9a62ac5c0ab47 (diff) | |
download | FreeBSD-src-1ade5b1eab73d10a65241fbbd57c9c5fc68012c0.zip FreeBSD-src-1ade5b1eab73d10a65241fbbd57c9c5fc68012c0.tar.gz |
Count per-address statistics for IP fragments.
Requested by: ru
Obtained from: BSD/OS
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_output.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 4f1bd4c..328e7ea 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1012,6 +1012,12 @@ sendorfree: m0 = m->m_nextpkt; m->m_nextpkt = 0; if (error == 0) { + /* Record statistics for this interface address. */ + if (ia) { + ia->ia_ifa.if_opackets++; + ia->ia_ifa.if_obytes += m->m_pkthdr.len; + } + error = nd6_output(ifp, origifp, m, dst, ro->ro_rt); } else m_freem(m); |