1 /* packet-dcerpc-rs_prop_plcy.c
3 * Routines for rs_prop_plcy 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_prop_plcy.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
18 #include <epan/packet.h>
19 #include "packet-dcerpc.h"
21 void proto_register_rs_prop_plcy (void);
22 void proto_reg_handoff_rs_prop_plcy (void);
24 static int proto_rs_prop_plcy
;
25 static int hf_rs_prop_plcy_opnum
;
28 static int ett_rs_prop_plcy
;
29 static e_guid_t uuid_rs_prop_plcy
=
30 { 0xe6ac5cb8, 0xde3e, 0x11ca, {0x93, 0x76, 0x08, 0x00, 0x1e, 0x03, 0x94,
33 static uint16_t ver_rs_prop_plcy
= 1;
36 static const dcerpc_sub_dissector rs_prop_plcy_dissectors
[] = {
37 {0, "rs_prop_properties_set_info", NULL
, NULL
},
38 {1, "rs_prop_plcy_set_info", NULL
, NULL
},
39 {2, "rs_prop_auth_plcy_set_info", NULL
, NULL
},
40 {3, "rs_prop_plcy_set_dom_cache_info", NULL
, NULL
},
45 proto_register_rs_prop_plcy (void)
47 static hf_register_info hf
[] = {
48 {&hf_rs_prop_plcy_opnum
,
49 {"Operation", "rs_prop_plcy.opnum", FT_UINT16
, BASE_DEC
, NULL
, 0x0,
57 proto_register_protocol
58 ("DCE/RPC Registry server propagation interface - properties and policies",
59 "rs_prop_plcy", "rs_prop_plcy");
60 proto_register_field_array (proto_rs_prop_plcy
, hf
, array_length (hf
));
61 proto_register_subtree_array (ett
, array_length (ett
));
65 proto_reg_handoff_rs_prop_plcy (void)
67 /* Register the protocol as dcerpc */
68 dcerpc_init_uuid (proto_rs_prop_plcy
, ett_rs_prop_plcy
, &uuid_rs_prop_plcy
,
69 ver_rs_prop_plcy
, rs_prop_plcy_dissectors
,
70 hf_rs_prop_plcy_opnum
);
74 * Editor modelines - https://www.wireshark.org/tools/modelines.html
79 * indent-tabs-mode: nil
82 * ex: set shiftwidth=2 tabstop=8 expandtab:
83 * :indentSize=2:tabSize=8:noTabs=true: