diff options
author | 2008-05-26 20:57:59 +0000 | |
---|---|---|
committer | 2008-05-26 20:57:59 +0000 | |
commit | 039c00b5a72c73a84b71ee409be1c1b53d94767b (patch) | |
tree | 9f2796957073a950b15430c2c6c6c55a9955a286 | |
parent | Make bringing the interface down work properly (includes a line stolen (diff) | |
download | wireguard-openbsd-039c00b5a72c73a84b71ee409be1c1b53d94767b.tar.xz wireguard-openbsd-039c00b5a72c73a84b71ee409be1c1b53d94767b.zip |
Count outbound packets.
ok kettenis@
-rw-r--r-- | sys/arch/socppc/dev/if_tsec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/socppc/dev/if_tsec.c b/sys/arch/socppc/dev/if_tsec.c index 5003cb33c6a..5eb1455daf6 100644 --- a/sys/arch/socppc/dev/if_tsec.c +++ b/sys/arch/socppc/dev/if_tsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tsec.c,v 1.8 2008/05/26 20:22:35 kettenis Exp $ */ +/* $OpenBSD: if_tsec.c,v 1.9 2008/05/26 20:57:59 brad Exp $ */ /* * Copyright (c) 2008 Mark Kettenis @@ -703,6 +703,7 @@ tsec_tx_proc(struct tsec_softc *sc) m_freem(txb->tb_m); txb->tb_m = NULL; + ifp->if_opacket++; } ifp->if_flags &= ~IFF_OACTIVE; |