From Chris Wilson:
[obnox/wireshark/wip.git] / packet-dcerpc-rs_prop_acct.c
1 /* packet-dcerpc-rs_prop_acct.c
2  * Routines for rs_prop_acct dissection
3  * Copyright 2003, Jaime Fournier <jafour1@yahoo.com>
4  * This information is based off the released idl files from opengroup.
5  * ftp://ftp.opengroup.org/pub/dce122/dce/src/file.tar.gz bubasics/rs_prop_acct.idl
6  *
7  * $Id: packet-dcerpc-rs_prop_acct.c,v 1.1 2003/11/25 08:10:57 guy Exp $
8  *      
9  * Ethereal - Network traffic analyzer
10  * By Gerald Combs <gerald@ethereal.com>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32
33 #ifdef HAVE_SYS_TYPES_H
34 #include <sys/types.h>
35 #endif
36
37 #include <string.h>
38
39 #include <glib.h>
40 #include <epan/packet.h>
41 #include "packet-dcerpc.h"
42
43 static int proto_rs_prop_acct = -1;
44 static int hf_rs_prop_acct_opnum = -1;
45
46
47 static gint ett_rs_prop_acct = -1;
48 static e_uuid_t uuid_rs_prop_acct = { 0x68097130, 0xde43, 0x11ca, { 0xa5, 0x54, 0x08, 0x00, 0x1e, 0x03, 0x94, 0xc7 } };
49 static guint16  ver_rs_prop_acct = 1;
50
51
52 static dcerpc_sub_dissector rs_prop_acct_dissectors[] = {
53 { 0, "rs_prop_acct_add", NULL, NULL },
54 { 1, "rs_prop_acct_delete", NULL, NULL },
55 { 2, "rs_prop_acct_rename", NULL, NULL },
56 { 3, "rs_prop_acct_replace", NULL, NULL },
57 { 4, "rs_prop_acct_add_key_version", NULL, NULL },
58 { 2, "rs_prop_acct_rename", NULL, NULL },
59 { 0, NULL, NULL, NULL }
60 };
61
62 void
63 proto_register_rs_prop_acct (void)
64 {
65         static hf_register_info hf[] = {
66         { &hf_rs_prop_acct_opnum,
67                 { "Operation", "rs_prop_acct.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, "Operation", HFILL }},
68         };
69
70         static gint *ett[] = {
71                 &ett_rs_prop_acct,
72         };
73         proto_rs_prop_acct = proto_register_protocol ("DCE/RPC RS_PROP_ACCT ", "rs_prop_acct", "rs_prop_acct");
74         proto_register_field_array (proto_rs_prop_acct, hf, array_length (hf));
75         proto_register_subtree_array (ett, array_length (ett));
76 }
77
78 void
79 proto_reg_handoff_rs_prop_acct (void)
80 {
81         /* Register the protocol as dcerpc */
82         dcerpc_init_uuid (proto_rs_prop_acct, ett_rs_prop_acct, &uuid_rs_prop_acct, ver_rs_prop_acct, rs_prop_acct_dissectors, hf_rs_prop_acct_opnum);
83 }