aboutsummaryrefslogtreecommitdiffstats
path: root/epan/oui.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-05-02 16:41:53 +0200
committerEvan Huus <eapache@gmail.com>2014-05-02 21:34:17 +0000
commitb7d6055f2ea8c81d5830649146a1ba5d7aa543f3 (patch)
tree97bff1c05a6968a8d1afa8d6d0da14003dc52072 /epan/oui.h
parent5f239013e744de640cd37462e067a495912b9e65 (diff)
Move value string of LLDP OUI to epan/oui.h
Change-Id: I3d9ddbae60631c958880574e7e441a931db3492d Reviewed-on: https://code.wireshark.org/review/1471 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/oui.h')
-rw-r--r--epan/oui.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/epan/oui.h b/epan/oui.h
index 0ffc128066..bae839fe01 100644
--- a/epan/oui.h
+++ b/epan/oui.h
@@ -90,6 +90,23 @@
*/
extern const value_string oui_vals[];
+
+static const value_string tlv_oui_subtype_vals[] = {
+ /* Currently, the manuf file calls this "Ieee8021"; "IEEE 802.1" looks better */
+ { OUI_IEEE_802_1, "IEEE 802.1" },
+ /* Currently, the manuf file calls this "Ieee8023"; "IEEE 802.3" looks better */
+ { OUI_IEEE_802_3, "IEEE 802.3" },
+ /* Currently, the manuf file calls this "Telecomm"; "TIA TR-41 Committee" looks better */
+ { OUI_MEDIA_ENDPOINT, "TIA TR-41 Committee" },
+ /* Currently, the manuf file calls this "Profibus" */
+ { OUI_PROFINET, "PROFINET" },
+ /* Currently, the manuf file calls this "Procurve", as it's assigned to HP! */
+ { OUI_IEEE_802_1QBG, "IEEE 802.1Qbg" },
+ /* Data Center Bridging Exchange */
+ { OUI_DCBX, "Data Center Bridging Capabilities Exchange" },
+ { 0, NULL }
+};
+
#endif
/*