diff options
author | hannes <hannes> | 2007-08-13 12:55:17 +0000 |
---|---|---|
committer | hannes <hannes> | 2007-08-13 12:55:17 +0000 |
commit | d7d590ddeb639a47099f336a961c6a88e376bbf6 (patch) | |
tree | 4b209fdb0e080f64a7241ecf1bd12919b497c16c /oui.c | |
parent | 3a8496e3db3229001ee69e5b761bf8b55b6a5ef9 (diff) | |
download | tcpdump-d7d590ddeb639a47099f336a961c6a88e376bbf6.tar.gz |
from Carles Kishimoto <carles.kishimoto@gmail.com>: add IEEE organisation specific subtype printing to the LLDP printer
Diffstat (limited to 'oui.c')
-rw-r--r-- | oui.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/oui.c,v 1.6 2005-04-09 21:49:48 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/oui.c,v 1.7 2007-08-13 12:55:17 hannes Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -39,6 +39,7 @@ struct tok oui_values[] = { { OUI_APPLETALK, "Appletalk" }, { OUI_JUNIPER, "Juniper" }, { OUI_HP, "Hewlett-Packard" }, + { OUI_IEEE_PRIVATE, "IEEE 802.3 Private"}, { 0, NULL } }; |