diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-03-14 16:54:17 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-03-16 19:44:47 +0100 |
commit | 546558eabd81cfc36a81a4df728fdfea0d83b41a (patch) | |
tree | 1c73014ecfb7653ffaf4bfa1855ace7d6bd6e33e /print-fddi.c | |
parent | 61f71d2046ced967e1bd998d41c68faf512f75ab (diff) | |
download | tcpdump-546558eabd81cfc36a81a4df728fdfea0d83b41a.tar.gz |
Add the ndo_protocol field in the netdissect_options structure
Update this field in printer entry functions.
It will be used for some printings.
Diffstat (limited to 'print-fddi.c')
-rw-r--r-- | print-fddi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/print-fddi.c b/print-fddi.c index f87c00f7..af8477ef 100644 --- a/print-fddi.c +++ b/print-fddi.c @@ -282,6 +282,7 @@ fddi_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen) struct lladdr_info src, dst; int llc_hdrlen; + ndo->ndo_protocol = "fddi"; if (caplen < FDDI_HDRLEN) { ND_PRINT("[|fddi]"); return (caplen); @@ -344,5 +345,6 @@ fddi_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen) u_int fddi_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p) { + ndo->ndo_protocol = "fddi_if"; return (fddi_print(ndo, p, h->len, h->caplen)); } |