diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-06-03 23:24:18 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-06-03 23:26:45 +0200 |
commit | 3e071a78f2a5c7424340b4c8b446d51e82413c13 (patch) | |
tree | 2a411f35daeae48be99a8d325f88dcbd63bb0f2a /ring_rx.h | |
parent | dc5f7a04f2b446b5224be356c2fc79e88a5d3e8f (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 'ring_rx.h')
-rw-r--r-- | ring_rx.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ extern void alloc_rx_ring_frames(int sock, struct ring *ring); extern void bind_rx_ring(int sock, struct ring *ring, int ifindex); extern void setup_rx_ring_layout(int sock, struct ring *ring, unsigned int size, bool jumbo_support, bool v3); +extern void sock_rx_net_stats(int sock); static inline int user_may_pull_from_rx(struct tpacket2_hdr *hdr) { |