summaryrefslogtreecommitdiff
path: root/netsniff-ng.c
diff options
context:
space:
mode:
authorVadim Kochan <vadim4j@gmail.com>2015-04-27 21:36:08 +0300
committerTobias Klauser <tklauser@distanz.ch>2015-05-02 17:14:38 +0200
commit6b85cfef15902cac483e922c0bcf1f055ba7ed4e (patch)
treeb3159175f6bb7d0723d3df917c7b353085bfe7e5 /netsniff-ng.c
parentf17e4b94287025f8223364cb9aee9b4b780b8c10 (diff)
netsniff-ng: Show packet number
Show the packet number as part of the dissector output. Example: > wlp3s0 107 1430159373s.693002029ns (#5) [ Eth MAC (6c:88:14:ac:51:e4 => 10:fe:ed:90:22:12), Proto (0x0800, IPv4) ] Signed-off-by: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'netsniff-ng.c')
-rw-r--r--netsniff-ng.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c
index 6cd0cf4..9655c59 100644
--- a/netsniff-ng.c
+++ b/netsniff-ng.c
@@ -311,7 +311,8 @@ static void pcap_to_xmit(struct ctx *ctx)
ctx->tx_packets++;
show_frame_hdr(out, hdr->tp_h.tp_snaplen,
- ctx->link_type, hdr, ctx->print_mode);
+ ctx->link_type, hdr, ctx->print_mode,
+ ctx->tx_packets);
dissector_entry_point(out, hdr->tp_h.tp_snaplen,
ctx->link_type, ctx->print_mode,
@@ -461,7 +462,8 @@ static void receive_to_xmit(struct ctx *ctx)
}
show_frame_hdr(in, hdr_in->tp_h.tp_snaplen,
- ctx->link_type, hdr_in, ctx->print_mode);
+ ctx->link_type, hdr_in, ctx->print_mode,
+ frame_count);
dissector_entry_point(in, hdr_in->tp_h.tp_snaplen,
ctx->link_type, ctx->print_mode,
@@ -645,7 +647,7 @@ static void read_pcap(struct ctx *ctx)
ctx->tx_packets++;
show_frame_hdr(out, fm.tp_h.tp_snaplen, ctx->link_type, &fm,
- ctx->print_mode);
+ ctx->print_mode, ctx->tx_packets);
dissector_entry_point(out, fm.tp_h.tp_snaplen,
ctx->link_type, ctx->print_mode,
@@ -913,7 +915,7 @@ static void walk_t3_block(struct block_desc *pbd, struct ctx *ctx,
}
__show_frame_hdr(packet, hdr->tp_snaplen, ctx->link_type, sll,
- hdr, ctx->print_mode, true);
+ hdr, ctx->print_mode, true, *frame_count);
dissector_entry_point(packet, hdr->tp_snaplen, ctx->link_type,
ctx->print_mode, sll->sll_protocol);
@@ -1047,7 +1049,8 @@ static void recv_only_or_dump(struct ctx *ctx)
}
show_frame_hdr(packet, hdr->tp_h.tp_snaplen,
- ctx->link_type, hdr, ctx->print_mode);
+ ctx->link_type, hdr, ctx->print_mode,
+ frame_count);
dissector_entry_point(packet, hdr->tp_h.tp_snaplen,
ctx->link_type, ctx->print_mode,