summaryrefslogtreecommitdiff
path: root/netsniff-ng.c
diff options
context:
space:
mode:
Diffstat (limited to 'netsniff-ng.c')
-rw-r--r--netsniff-ng.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c
index 351dcc9..6a83702 100644
--- a/netsniff-ng.c
+++ b/netsniff-ng.c
@@ -281,7 +281,7 @@ static void pcap_to_xmit(struct ctx *ctx)
!bpf_run_filter(&bpf_ops, out,
pcap_get_length(&phdr, ctx->magic)));
- pcap_pkthdr_to_tpacket_hdr(&phdr, ctx->magic, &hdr->tp_h);
+ pcap_pkthdr_to_tpacket_hdr(&phdr, ctx->magic, &hdr->tp_h, NULL);
ctx->tx_bytes += hdr->tp_h.tp_len;;
ctx->tx_packets++;
@@ -620,7 +620,7 @@ static void read_pcap(struct ctx *ctx)
!bpf_run_filter(&bpf_ops, out,
pcap_get_length(&phdr, ctx->magic)));
- pcap_pkthdr_to_tpacket_hdr(&phdr, ctx->magic, &fm.tp_h);
+ pcap_pkthdr_to_tpacket_hdr(&phdr, ctx->magic, &fm.tp_h, &fm.s_ll);
ctx->tx_bytes += fm.tp_h.tp_len;
ctx->tx_packets++;