1 /* packet-force10-oui.c
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include <epan/packet.h>
13 #include "packet-llc.h"
16 void proto_register_force10_oui(void);
18 static int hf_llc_force10_pid
;
20 static const value_string force10_pid_vals
[] = {
21 { 0x0111, "FEFD" }, /* Far End Failure Detection */
26 * NOTE: there's no dissector here, just registration routines to set
27 * up the dissector table for the Force10 OUI.
30 proto_register_force10_oui(void)
32 static hf_register_info hf
[] = {
33 { &hf_llc_force10_pid
,
34 { "PID", "llc.force10_pid", FT_UINT16
, BASE_HEX
,
35 VALS(force10_pid_vals
), 0x0, NULL
, HFILL
}
39 llc_add_oui(OUI_FORCE10
, "llc.force10_pid", "LLC FORCE10 OUI PID", hf
, -1);
43 * Editor modelines - https://www.wireshark.org/tools/modelines.html
51 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
52 * :indentSize=8:tabSize=8:noTabs=false: