diff options
author | pst <pst@FreeBSD.org> | 1996-09-15 17:55:09 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-09-15 17:55:09 +0000 |
commit | b4a90e5e8c433a9219f29edcaa158e49d1b4f4c6 (patch) | |
tree | 8a44410a12e56bc5b7e968aed914a4bdcf247a48 /contrib/tcpdump | |
parent | ed762d7339b8d1a005de0e3a6bc3b5d86adc4f8a (diff) | |
download | FreeBSD-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/tcpdump')
-rw-r--r-- | contrib/tcpdump/print-ether.c | 4 |
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: |