From Graeme Hewson:
[obnox/wireshark/wip.git] / packet-dcerpc-icl_rpc.c
1 /* packet-dcerpc-icl_rpc.c
2  * Routines for icl_rpc dissection
3  * Copyright 2002, Jaime Fournier <Jaime.Fournier@hush.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 icl_rpc.idl
6  *
7  * $Id: packet-dcerpc-icl_rpc.c,v 1.2 2004/01/27 04:15:48 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_icl_rpc = -1;
44 static int hf_icl_rpc_opnum = -1;
45
46
47 static gint ett_icl_rpc = -1;
48
49 static e_uuid_t uuid_icl_rpc = { 0x003fd39c, 0x7feb, 0x1bbc, { 0xbe, 0xbe, 0x02, 0x60, 0x8c, 0x2e, 0xf4, 0xd2 } };
50 static guint16  ver_icl_rpc = 1;
51
52
53
54 static dcerpc_sub_dissector icl_rpc_dissectors[] = {
55         { 0, "DFSTRACE_GetSetInfo", NULL, NULL },
56         { 1, "DFSTRACE_SetSetInfo", NULL, NULL },
57         { 2, "DFSTRACE_GetLogInfo", NULL, NULL },
58         { 3, "DFSTRACE_SetLogInfo", NULL, NULL },
59         { 4, "DFSTRACE_ClearSet", NULL, NULL },
60         { 5, "DFSTRACE_ClearLog", NULL, NULL },
61         { 6, "DFSTRACE_DumpSet", NULL, NULL },
62         { 0, NULL, NULL, NULL }
63 };
64
65 void
66 proto_register_icl_rpc (void)
67 {
68         static hf_register_info hf[] = {
69         { &hf_icl_rpc_opnum,
70                 { "Operation", "icl_rpc.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, "Operation", HFILL }},
71         };
72
73         static gint *ett[] = {
74                 &ett_icl_rpc,
75         };
76         proto_icl_rpc = proto_register_protocol ("DCE/RPC ICL RPC", "ICL_RPC", "icl_rpc");
77         proto_register_field_array (proto_icl_rpc, hf, array_length (hf));
78         proto_register_subtree_array (ett, array_length (ett));
79 }
80
81 void
82 proto_reg_handoff_icl_rpc (void)
83 {
84         /* Register the protocol as dcerpc */
85         dcerpc_init_uuid (proto_icl_rpc, ett_icl_rpc, &uuid_icl_rpc, ver_icl_rpc, icl_rpc_dissectors, hf_icl_rpc_opnum);
86 }