/src/wireshark/epan/dissectors/packet-dcerpc-rdaclif.c
Line | Count | Source |
1 | | /* packet-dcerpc-rdaclif.c |
2 | | * |
3 | | * Routines for rdaclif 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/rdaclif.idl |
7 | | * |
8 | | * Wireshark - Network traffic analyzer |
9 | | * By Gerald Combs <gerald@wireshark.org> |
10 | | * Copyright 1998 Gerald Combs |
11 | | * |
12 | | * SPDX-License-Identifier: GPL-2.0-or-later |
13 | | */ |
14 | | |
15 | | #include "config.h" |
16 | | |
17 | | |
18 | | #include <epan/packet.h> |
19 | | #include "packet-dcerpc.h" |
20 | | |
21 | | void proto_register_rdaclif (void); |
22 | | void proto_reg_handoff_rdaclif (void); |
23 | | |
24 | | static int proto_rdaclif; |
25 | | static int hf_rdaclif_opnum; |
26 | | |
27 | | |
28 | | static int ett_rdaclif; |
29 | | static e_guid_t uuid_rdaclif = |
30 | | { 0x47b33331, 0x8000, 0x0000, {0x0d, 0x00, 0x01, 0xdc, 0x6c, 0x00, 0x00, |
31 | | 0x00} }; |
32 | | |
33 | | static uint16_t ver_rdaclif = 1; |
34 | | |
35 | | |
36 | | static const dcerpc_sub_dissector rdaclif_dissectors[] = { |
37 | | {0, "lookup", NULL, NULL}, |
38 | | {1, "replace", NULL, NULL}, |
39 | | {2, "get_access", NULL, NULL}, |
40 | | {3, "test_access", NULL, NULL}, |
41 | | {4, "test_access_on_behalf", NULL, NULL}, |
42 | | {5, "get_manager_types", NULL, NULL}, |
43 | | {6, "get_printstring", NULL, NULL}, |
44 | | {7, "get_referral", NULL, NULL}, |
45 | | {8, "get_mgr_types_semantics", NULL, NULL}, |
46 | | {0, NULL, NULL, NULL} |
47 | | }; |
48 | | |
49 | | void |
50 | | proto_register_rdaclif (void) |
51 | 14 | { |
52 | 14 | static hf_register_info hf[] = { |
53 | 14 | {&hf_rdaclif_opnum, |
54 | 14 | {"Operation", "rdaclif.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, |
55 | 14 | NULL, HFILL}}, |
56 | 14 | }; |
57 | | |
58 | 14 | static int *ett[] = { |
59 | 14 | &ett_rdaclif, |
60 | 14 | }; |
61 | 14 | proto_rdaclif = |
62 | 14 | proto_register_protocol ("DCE/RPC Directory Acl Interface", "rdaclif", |
63 | 14 | "rdaclif"); |
64 | 14 | proto_register_field_array (proto_rdaclif, hf, array_length (hf)); |
65 | 14 | proto_register_subtree_array (ett, array_length (ett)); |
66 | 14 | } |
67 | | |
68 | | void |
69 | | proto_reg_handoff_rdaclif (void) |
70 | 14 | { |
71 | | /* Register the protocol as dcerpc */ |
72 | 14 | dcerpc_init_uuid (proto_rdaclif, ett_rdaclif, &uuid_rdaclif, ver_rdaclif, |
73 | 14 | rdaclif_dissectors, hf_rdaclif_opnum); |
74 | 14 | } |
75 | | |
76 | | /* |
77 | | * Editor modelines - https://www.wireshark.org/tools/modelines.html |
78 | | * |
79 | | * Local Variables: |
80 | | * c-basic-offset: 2 |
81 | | * tab-width: 8 |
82 | | * indent-tabs-mode: nil |
83 | | * End: |
84 | | * |
85 | | * ex: set shiftwidth=2 tabstop=8 expandtab: |
86 | | * :indentSize=2:tabSize=8:noTabs=true: |
87 | | */ |