ipfw: improve exit message

This patch synchronizes the exit message with what is done in
NFQ capture mode.
pull/852/merge
Eric Leblond 12 years ago committed by Victor Julien
parent 1c48a81f91
commit 9f6527dc16

@ -393,7 +393,11 @@ void ReceiveIPFWThreadExitStats(ThreadVars *tv, void *data)
SCEnter();
SCLogNotice("(%s) Packets %" PRIu32 ", bytes %" PRIu64 "", tv->name, ptv->pkts, ptv->bytes);
SCLogNotice("(%s) Treated: Pkts %" PRIu32 ", Bytes %" PRIu64 ", Errors %" PRIu32 "",
tv->name, ptv->pkts, ptv->bytes, ptv->errs);
SCLogNotice("(%s) Verdict: Accepted %"PRIu32", Dropped %"PRIu32 "",
tv->name, ptv->accepted, ptv->dropped);
SCReturn;
}

Loading…
Cancel
Save