Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-dcerpc-rs_prop_acl.c
blobca33e87f0b9550de517a15eda6e1bb2cb298fffb
1 /* packet-dcerpc-rs_prop_acl.c
3 * Routines for rs_prop_acl 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_acl.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_prop_acl (void);
22 void proto_reg_handoff_rs_prop_acl (void);
24 static int proto_rs_prop_acl;
25 static int hf_rs_prop_acl_opnum;
28 static int ett_rs_prop_acl;
29 static e_guid_t uuid_rs_prop_acl =
30 { 0x591d87d0, 0xde64, 0x11ca, {0xa1, 0x1c, 0x08, 0x00, 0x1e, 0x03, 0x94,
31 0xc7} };
33 static uint16_t ver_rs_prop_acl = 1;
36 static const dcerpc_sub_dissector rs_prop_acl_dissectors[] = {
37 {0, "replace", NULL, NULL},
38 {0, NULL, NULL, NULL}
41 void
42 proto_register_rs_prop_acl (void)
44 static hf_register_info hf[] = {
45 {&hf_rs_prop_acl_opnum,
46 {"Operation", "rs_prop_acl.opnum", FT_UINT16, BASE_DEC, NULL, 0x0,
47 NULL, HFILL}},
50 static int *ett[] = {
51 &ett_rs_prop_acl,
53 proto_rs_prop_acl =
54 proto_register_protocol
55 ("DCE/RPC Registry server propagation interface - ACLs", "rs_prop_acl",
56 "rs_prop_acl");
57 proto_register_field_array (proto_rs_prop_acl, hf, array_length (hf));
58 proto_register_subtree_array (ett, array_length (ett));
61 void
62 proto_reg_handoff_rs_prop_acl (void)
64 /* Register the protocol as dcerpc */
65 dcerpc_init_uuid (proto_rs_prop_acl, ett_rs_prop_acl, &uuid_rs_prop_acl,
66 ver_rs_prop_acl, rs_prop_acl_dissectors,
67 hf_rs_prop_acl_opnum);
71 * Editor modelines - https://www.wireshark.org/tools/modelines.html
73 * Local Variables:
74 * c-basic-offset: 2
75 * tab-width: 8
76 * indent-tabs-mode: nil
77 * End:
79 * ex: set shiftwidth=2 tabstop=8 expandtab:
80 * :indentSize=2:tabSize=8:noTabs=true: