X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/49d423e23fdf9e17e85382d21990fbf3ff5a1c9f..229cf9681b91f1dfa150dba39ace90fc99b2b302:/print-ether.c?ds=sidebyside diff --git a/print-ether.c b/print-ether.c index 2f656430..441cee0f 100644 --- a/print-ether.c +++ b/print-ether.c @@ -20,7 +20,7 @@ */ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.102 2006-02-20 18:13:55 hannes Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.103 2006-10-12 10:26:12 hannes Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -74,6 +74,7 @@ const struct tok ethertype_values[] = { { ETHERTYPE_LOOPBACK, "Loopback" }, { ETHERTYPE_ISO, "OSI" }, { ETHERTYPE_GRE_ISO, "GRE-OSI" }, + { ETHERTYPE_CFM, "CFM" }, { 0, NULL} }; @@ -307,6 +308,10 @@ ether_encap_print(u_short ether_type, const u_char *p, slow_print(p, length); return (1); + case ETHERTYPE_CFM: + cfm_print(p, length); + return (1); + case ETHERTYPE_LOOPBACK: return (1);