summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorpst <pst@FreeBSD.org>1996-09-15 17:55:09 +0000
committerpst <pst@FreeBSD.org>1996-09-15 17:55:09 +0000
commitb4a90e5e8c433a9219f29edcaa158e49d1b4f4c6 (patch)
tree8a44410a12e56bc5b7e968aed914a4bdcf247a48 /contrib
parented762d7339b8d1a005de0e3a6bc3b5d86adc4f8a (diff)
downloadFreeBSD-src-b4a90e5e8c433a9219f29edcaa158e49d1b4f4c6.zip
FreeBSD-src-b4a90e5e8c433a9219f29edcaa158e49d1b4f4c6.tar.gz
Here is a patch to make tcpdump recognise IPX packets that is using
ETHERNET_II framing. It got lost during the tcpdump upgrade. Submitted by: John.Hay@mikom.csir.co.za
Diffstat (limited to 'contrib')
-rw-r--r--contrib/tcpdump/print-ether.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/tcpdump/print-ether.c b/contrib/tcpdump/print-ether.c
index e6820c1..405f495 100644
--- a/contrib/tcpdump/print-ether.c
+++ b/contrib/tcpdump/print-ether.c
@@ -185,6 +185,10 @@ ether_encap_print(u_short ethertype, const u_char *p,
aarp_print(p, length);
return (1);
+ case ETHERTYPE_IPX:
+ ipx_print(p, length);
+ return (1);
+
case ETHERTYPE_LAT:
case ETHERTYPE_SCA:
case ETHERTYPE_MOPRC:
OpenPOWER on IntegriCloud