summaryrefslogtreecommitdiff
path: root/xutils.c
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-06-03 23:24:18 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-06-03 23:26:45 +0200
commit3e071a78f2a5c7424340b4c8b446d51e82413c13 (patch)
tree2a411f35daeae48be99a8d325f88dcbd63bb0f2a /xutils.c
parentdc5f7a04f2b446b5224be356c2fc79e88a5d3e8f (diff)
netsniff-ng: v3: fix packet accounting on --num
We need to carry frame_count through multiple calls of walk function to account correctly for --num <pkts>. Also, move socket stats printing into rx ring, since it belongs there. Todo: the kernel socket seems to have a different count that what we see. This needs to be fixed one way or the other. Not yet sure what's causing this. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'xutils.c')
-rw-r--r--xutils.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/xutils.c b/xutils.c
index a5fbb3c..eea258c 100644
--- a/xutils.c
+++ b/xutils.c
@@ -608,28 +608,6 @@ void device_set_flags(const char *ifname, const short flags)
close(sock);
}
-void sock_print_net_stats(int sock)
-{
- int ret;
- struct tpacket_stats kstats;
-
- socklen_t slen = sizeof(kstats);
-
- memset(&kstats, 0, sizeof(kstats));
- ret = getsockopt(sock, SOL_PACKET, PACKET_STATISTICS, &kstats, &slen);
- if (ret > -1) {
- uint64_t packets = kstats.tp_packets;
- uint64_t drops = kstats.tp_drops;
-
- printf("\r%12ld packets incoming\n", packets);
- printf("\r%12ld packets passed filter\n", packets - drops);
- printf("\r%12ld packets failed filter (out of space)\n", drops);
- if (kstats.tp_packets > 0)
- printf("\r%12.4lf%\% packet droprate\n",
- (1.0 * drops / packets) * 100.0);
- }
-}
-
void register_signal(int signal, void (*handler)(int))
{
sigset_t block_mask;