diff options
author | guy <guy> | 2005-05-19 07:25:49 +0000 |
---|---|---|
committer | guy <guy> | 2005-05-19 07:25:49 +0000 |
commit | d265160abdc648b40dad333a785eca0b80f8c9ca (patch) | |
tree | 928b36028532005137ebb035a1a6b537f3d17f0c /print-null.c | |
parent | b54ff914a1ea5c40da3687b52a508748ecb801b0 (diff) | |
download | tcpdump-d265160abdc648b40dad333a785eca0b80f8c9ca.tar.gz |
Print the link-layer header for packets with an unknown AF value, as it
used to do.
When printing the link-layer header, interpret the "-q" flag, and print
the packet length, similarly to the way the Ethernet print routine does.
Diffstat (limited to 'print-null.c')
-rw-r--r-- | print-null.c | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/print-null.c b/print-null.c index 315fafdb..11f90ef3 100644 --- a/print-null.c +++ b/print-null.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.54 2005-05-18 13:50:52 hannes Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.55 2005-05-19 07:25:49 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -91,6 +91,20 @@ const struct tok bsd_af_values[] = { #define SWAPLONG(y) \ ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff)) +static inline void +null_hdr_print(u_int family, u_int length) +{ + if (!qflag) { + (void)printf("AF %s (%u)", + tok2str(bsd_af_values,"Unknown",family),family); + } else { + (void)printf("%s", + tok2str(bsd_af_values,"Unknown AF %u",family)); + } + + (void)printf(", length %u: ", length); +} + /* * This is the top level routine of the printer. 'p' points * to the ether header of the packet, 'h->ts' is the timestamp, @@ -122,17 +136,17 @@ null_if_print(const struct pcap_pkthdr *h, const u_char *p) if ((family & 0xFFFF0000) != 0) family = SWAPLONG(family); + if (eflag) + null_hdr_print(family, length); + length -= NULL_HDRLEN; caplen -= NULL_HDRLEN; p += NULL_HDRLEN; - if (eflag) - printf("AF %s (%u)",tok2str(bsd_af_values,"Unknown",family),family); - switch (family) { case BSD_AF_INET: - ip_print(gndo, p, length); + ip_print(gndo, p, length); break; #ifdef INET6 @@ -157,6 +171,8 @@ null_if_print(const struct pcap_pkthdr *h, const u_char *p) default: /* unknown AF_ value */ + if (!eflag) + null_hdr_print(family, length + NULL_HDRLEN); if (!xflag && !qflag) default_print(p, caplen); } |