Move 3 ASN1 dissectors to 'clean' group; move 1 PIDL dissector to 'dirty' group.
[metze/wireshark/wip.git] / epan / dissectors / packet-dcerpc-rs_attr_schema.c
1 /* packet-dcerpc-rs_attr_schema.c
2  *
3  * Routines for rs_attr_schema 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_attr_schema.idl
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27  */
28
29 #include "config.h"
30
31
32 #include <glib.h>
33 #include <epan/packet.h>
34 #include "packet-dcerpc.h"
35
36 static int proto_rs_attr_schema = -1;
37 static int hf_rs_attr_schema_opnum = -1;
38
39
40 static gint ett_rs_attr_schema = -1;
41 static e_uuid_t uuid_rs_attr_schema =
42   { 0xb47c9460, 0x567f, 0x11cb, {0x8c, 0x09, 0x08, 0x00, 0x1e, 0x04, 0xde,
43                                  0x8c} };
44 static guint16 ver_rs_attr_schema = 0;
45
46
47 static dcerpc_sub_dissector rs_attr_schema_dissectors[] = {
48   {0, "create_entry", NULL, NULL},
49   {1, "delete_entry", NULL, NULL},
50   {2, "update_entry", NULL, NULL},
51   {3, "cursor_init", NULL, NULL},
52   {4, "scan", NULL, NULL},
53   {5, "lookup_by_name", NULL, NULL},
54   {6, "lookup_by_id", NULL, NULL},
55   {7, "get_referral", NULL, NULL},
56   {8, "get_acl_mgrs", NULL, NULL},
57   {9, "aclmgr_strings", NULL, NULL},
58   {0, NULL, NULL, NULL}
59 };
60
61 void
62 proto_register_rs_attr_schema (void)
63 {
64   static hf_register_info hf[] = {
65     {&hf_rs_attr_schema_opnum,
66      {"Operation", "rs_attr_schema.opnum", FT_UINT16, BASE_DEC, NULL, 0x0,
67       NULL, HFILL}},
68   };
69
70   static gint *ett[] = {
71     &ett_rs_attr_schema,
72   };
73   proto_rs_attr_schema =
74     proto_register_protocol ("DCE/RPC Registry Server Attributes Schema",
75                              "rs_attr_schema", "rs_attr_schema");
76   proto_register_field_array (proto_rs_attr_schema, hf, array_length (hf));
77   proto_register_subtree_array (ett, array_length (ett));
78 }
79
80 void
81 proto_reg_handoff_rs_attr_schema (void)
82 {
83   /* Register the protocol as dcerpc */
84   dcerpc_init_uuid (proto_rs_attr_schema, ett_rs_attr_schema,
85                     &uuid_rs_attr_schema, ver_rs_attr_schema,
86                     rs_attr_schema_dissectors, hf_rs_attr_schema_opnum);
87 }