Dynamically create DCERPC opnum value_strings from the subdissector
[obnox/wireshark/wip.git] / packet-dcerpc-cprpc_server.c
1 /* packet-dcerpc-cprpc_server.c
2  * Routines for DNS Control Program Server dissection
3  * Copyright 2002, 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/directory.tar.gz directory/cds/stubs/cprpc_server.idl
6  *      
7  * $Id: packet-dcerpc-cprpc_server.c,v 1.3 2003/06/26 04:30:26 tpot 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
44 static int proto_cprpc_server = -1;
45 static int hf_cprpc_server_opnum = -1;
46
47
48 static gint ett_cprpc_server = -1;
49
50
51 static e_uuid_t uuid_cprpc_server = { 0x4885772c, 0xc6d3, 0x11ca, { 0x84, 0xc6, 0x08, 0x00, 0x2b, 0x1c, 0x8f, 0x1f } };
52 static guint16  ver_cprpc_server = 1;
53
54
55 static dcerpc_sub_dissector cprpc_server_dissectors[] = {
56     { 0, "dnscp_server", NULL, NULL},
57     { 0, NULL, NULL, NULL }
58 };
59
60 void
61 proto_register_cprpc_server (void)
62 {
63         static hf_register_info hf[] = {
64           { &hf_cprpc_server_opnum,
65             { "Operation", "cprpc_server.opnum", FT_UINT16, BASE_DEC,
66               NULL, 0x0, "Operation", HFILL }}
67         };
68
69         static gint *ett[] = {
70                 &ett_cprpc_server,
71         };
72         proto_cprpc_server = proto_register_protocol ("DNS Control Program Server", "cprpc_server", "cprpc_server");
73         proto_register_field_array (proto_cprpc_server, hf, array_length (hf));
74         proto_register_subtree_array (ett, array_length (ett));
75 }
76
77 void
78 proto_reg_handoff_cprpc_server (void)
79 {
80         header_field_info *hf_info;
81
82         /* Register the protocol as dcerpc */
83         dcerpc_init_uuid (proto_cprpc_server, ett_cprpc_server, &uuid_cprpc_server, ver_cprpc_server, cprpc_server_dissectors, hf_cprpc_server_opnum);
84
85         /* Set opnum strings from subdissector list */
86
87         hf_info = proto_registrar_get_nth(hf_cprpc_server_opnum);
88         hf_info->strings = value_string_from_subdissectors(
89                 cprpc_server_dissectors, array_length(cprpc_server_dissectors));
90 }