QSIG fully implemented
[obnox/wireshark/wip.git] / epan / dissectors / packet-dcerpc-mgmt.c
1 /* packet-dcerpc-mgmt.c
2  * Routines for dcerpc mgmt dissection
3  * Copyright 2001, Todd Sabin <tas@webspan.net>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30
31 #include <string.h>
32
33 #include <glib.h>
34 #include <epan/packet.h>
35 #include "packet-dcerpc.h"
36
37
38 static int proto_mgmt = -1;
39 static int hf_opnum = -1;
40
41 static gint ett_mgmt = -1;
42
43
44 static e_uuid_t uuid_mgmt = { 0xafa8bd80, 0x7d8a, 0x11c9, { 0xbe, 0xf4, 0x08, 0x00, 0x2b, 0x10, 0x29, 0x89 } };
45 static guint16  ver_mgmt = 1;
46
47
48 static dcerpc_sub_dissector mgmt_dissectors[] = {
49     { 0, "rpc__mgmt_inq_if_ids", NULL, NULL },
50     { 1, "rpc__mgmt_inq_stats", NULL, NULL },
51     { 2, "rpc__mgmt_is_server_listening", NULL, NULL },
52     { 3, "rpc__mgmt_stop_server_listening", NULL, NULL },
53     { 4, "rpc__mgmt_inq_princ_name", NULL, NULL },
54     { 0, NULL, NULL, NULL }
55 };
56
57
58 void
59 proto_register_mgmt (void)
60 {
61         static hf_register_info hf[] = {
62                 { &hf_opnum,
63                   { "Operation", "mgmt.opnum", FT_UINT16, BASE_DEC,
64                     NULL, 0x0, "", HFILL }},
65         };
66
67         static gint *ett[] = {
68                 &ett_mgmt
69         };
70         proto_mgmt = proto_register_protocol ("DCE/RPC Remote Management", "MGMT", "mgmt");
71         proto_register_field_array (proto_mgmt, hf, array_length (hf));
72         proto_register_subtree_array (ett, array_length (ett));
73 }
74
75 void
76 proto_reg_handoff_mgmt (void)
77 {
78         /* Register the protocol as dcerpc */
79         dcerpc_init_uuid (proto_mgmt, ett_mgmt, &uuid_mgmt, ver_mgmt, mgmt_dissectors, hf_opnum);
80 }