Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-ipmi-update.c
blob1ba085ac4f6aead972f55a993b15e003fc9245e1
1 /* packet-ipmi-update.c
2 * Sub-dissectors for IPMI messages (netFn=Firmware Update, PPS-specific)
3 * Copyright 2007-2008, Alexey Neyman, Pigeon Point Systems <avn@pigeonpoint.com>
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include "config.h"
14 #include <epan/packet.h>
16 #include "packet-ipmi.h"
18 void proto_register_ipmi_update(void);
20 static const ipmi_cmd_t cmd_update[] = {
21 { 0x00, IPMI_TBD, NULL, NULL, "[PPS OEM] Upgrade Status", 0 },
22 { 0x01, IPMI_TBD, NULL, NULL, "[PPS OEM] Upgrade Start", 0 },
23 { 0x02, IPMI_TBD, NULL, NULL, "[PPS OEM] Upgrade Prepare", 0 },
24 { 0x03, IPMI_TBD, NULL, NULL, "[PPS OEM] Upgrade Write", 0 },
25 { 0x04, IPMI_TBD, NULL, NULL, "[PPS OEM] Upgrade Complete", 0 },
26 { 0x05, IPMI_TBD, NULL, NULL, "[PPS OEM] Restore Backup", 0 },
27 { 0x06, IPMI_TBD, NULL, NULL, "[PPS OEM] Query Backup Version", 0 }
30 void
31 proto_register_ipmi_update(void)
33 ipmi_register_netfn_cmdtab(IPMI_UPDATE_REQ, IPMI_OEM_PPS, NULL, 0, NULL,
34 cmd_update, array_length(cmd_update));
38 * Editor modelines - https://www.wireshark.org/tools/modelines.html
40 * Local variables:
41 * c-basic-offset: 8
42 * tab-width: 8
43 * indent-tabs-mode: t
44 * End:
46 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
47 * :indentSize=8:tabSize=8:noTabs=false: