MSWSP: fix dissect_mswsp_smb()
[wireshark-wip.git] / epan / dissectors / packet-dcerpc-rs_attr_schema.c
blob92d076677464a7e5438b8ae1a5ee3c54afb328f4
1 /* packet-dcerpc-rs_attr_schema.c
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
8 * $Id$
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 1998 Gerald Combs
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.
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.
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.
29 #include "config.h"
32 #include <glib.h>
33 #include <epan/packet.h>
34 #include "packet-dcerpc.h"
36 static int proto_rs_attr_schema = -1;
37 static int hf_rs_attr_schema_opnum = -1;
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;
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}
61 void
62 proto_register_rs_attr_schema (void)
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}},
70 static gint *ett[] = {
71 &ett_rs_attr_schema,
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));
80 void
81 proto_reg_handoff_rs_attr_schema (void)
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);