Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-force10-oui.c
blob4da08f1f20049eb2a1427159eb85d55f29be94ec
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
8 */
10 #include "config.h"
12 #include <epan/packet.h>
13 #include "packet-llc.h"
14 #include <epan/oui.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 */
22 { 0, NULL }
26 * NOTE: there's no dissector here, just registration routines to set
27 * up the dissector table for the Force10 OUI.
29 void
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
45 * Local variables:
46 * c-basic-offset: 8
47 * tab-width: 8
48 * indent-tabs-mode: t
49 * End:
51 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
52 * :indentSize=8:tabSize=8:noTabs=false: