epan/dissectors/pidl/samr/samr.cnf cnf_dissect_lsa_BinaryString => lsarpc_dissect_str...
[wireshark-sm.git] / epan / dissectors / packet-dcerpc-rs_repmgr.c
blob594bb985da0f617f999451e4e16ab7e995167f79
1 /* packet-dcerpc-rs_repmgr.c
3 * Routines for rs_repmgr dissection
4 * Copyright 2004, Jaime Fournier <jaime.fournier@hush.com>
5 * This information is based off the released idl files from opengroup.
6 * ftp://ftp.opengroup.org/pub/dce122/dce/src/security.tar.gz security/idl/rs_repmgr.idl
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
15 #include "config.h"
18 #include <epan/packet.h>
19 #include "packet-dcerpc.h"
21 void proto_register_rs_repmgr (void);
22 void proto_reg_handoff_rs_repmgr (void);
24 static int proto_rs_repmgr;
25 static int hf_rs_repmgr_opnum;
28 static int ett_rs_repmgr;
29 static e_guid_t uuid_rs_repmgr =
30 { 0xb62dc198, 0xdfd4, 0x11ca, {0x94, 0x8f, 0x08, 0x00, 0x1e, 0x02, 0x59,
31 0x4c} };
33 static uint16_t ver_rs_repmgr = 2;
36 static const dcerpc_sub_dissector rs_repmgr_dissectors[] = {
37 {0, "get_info_and_creds", NULL, NULL},
38 {1, "init", NULL, NULL},
39 {2, "init_done", NULL, NULL},
40 {3, "i_am_slave", NULL, NULL},
41 {4, "i_am_master", NULL, NULL},
42 {5, "become_master", NULL, NULL},
43 {6, "copy_all", NULL, NULL},
44 {7, "copy_propq", NULL, NULL},
45 {8, "stop_until_compat_sw", NULL, NULL},
46 {0, NULL, NULL, NULL}
49 void
50 proto_register_rs_repmgr (void)
52 static hf_register_info hf[] = {
53 {&hf_rs_repmgr_opnum,
54 {"Operation", "rs_repmgr.opnum", FT_UINT16, BASE_DEC, NULL, 0x0,
55 NULL, HFILL}},
58 static int *ett[] = {
59 &ett_rs_repmgr,
61 proto_rs_repmgr =
62 proto_register_protocol
63 ("DCE/RPC Operations between registry server replicas", "rs_repmgr",
64 "rs_repmgr");
65 proto_register_field_array (proto_rs_repmgr, hf, array_length (hf));
66 proto_register_subtree_array (ett, array_length (ett));
69 void
70 proto_reg_handoff_rs_repmgr (void)
72 /* Register the protocol as dcerpc */
73 dcerpc_init_uuid (proto_rs_repmgr, ett_rs_repmgr, &uuid_rs_repmgr,
74 ver_rs_repmgr, rs_repmgr_dissectors, hf_rs_repmgr_opnum);
78 * Editor modelines - https://www.wireshark.org/tools/modelines.html
80 * Local Variables:
81 * c-basic-offset: 2
82 * tab-width: 8
83 * indent-tabs-mode: nil
84 * End:
86 * ex: set shiftwidth=2 tabstop=8 expandtab:
87 * :indentSize=2:tabSize=8:noTabs=true: