diff options
author | delphij <delphij@FreeBSD.org> | 2013-05-30 06:46:26 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2013-05-30 06:46:26 +0000 |
commit | a765887ce77351bac1c77be2cf18a3a66a602fc5 (patch) | |
tree | 7ad307c72c31cc07657515d09bc98fe727ce8d27 /print-ether.c | |
parent | 69fe8a0033b22318969c85b57837b48863946665 (diff) | |
download | FreeBSD-src-a765887ce77351bac1c77be2cf18a3a66a602fc5.zip FreeBSD-src-a765887ce77351bac1c77be2cf18a3a66a602fc5.tar.gz |
Vendor import of tcpdump 4.4.0.
Diffstat (limited to 'print-ether.c')
-rw-r--r-- | print-ether.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/print-ether.c b/print-ether.c index e2f487c..f783341 100644 --- a/print-ether.c +++ b/print-ether.c @@ -76,6 +76,7 @@ const struct tok ethertype_values[] = { { ETHERTYPE_PPPOES, "PPPoE S" }, { ETHERTYPE_EAPOL, "EAPOL" }, { ETHERTYPE_RRCP, "RRCP" }, + { ETHERTYPE_MS_NLB_HB, "MS NLB heartbeat" }, { ETHERTYPE_JUMBO, "Jumbo" }, { ETHERTYPE_LOOPBACK, "Loopback" }, { ETHERTYPE_ISO, "OSI" }, @@ -412,6 +413,10 @@ ethertype_print(netdissect_options *ndo, tipc_print(ndo, p, length, caplen); return (1); + case ETHERTYPE_MS_NLB_HB: + msnlb_print(ndo, p, length); + return (1); + case ETHERTYPE_LAT: case ETHERTYPE_SCA: case ETHERTYPE_MOPRC: |