From Ronald Henderson: make "format_text()", on Windows, escape all
[obnox/wireshark/wip.git] / packet-dcerpc-dnsserver.c
1 /* packet-dcerpc-dnsserver.c
2  * Routines for SMB \PIPE\DNSSERVER packet disassembly
3  * Copyright 2001, 2002 Tim Potter <tpot@samba.org>
4  *
5  * $Id: packet-dcerpc-dnsserver.c,v 1.1 2002/09/11 23:59:13 tpot Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
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 #include <glib.h>
31 #include <epan/packet.h>
32 #include "packet-dcerpc.h"
33 #include "packet-dcerpc-nt.h"
34 #include "packet-dcerpc-dnsserver.h"
35 #include "smb.h"
36
37 /* Global hf index fields */
38
39 static int hf_rc = -1;
40
41 static int proto_dcerpc_dnsserver = -1;
42 static int hf_opnum = -1;
43
44 static gint ett_dnsserver = -1;
45
46 static e_uuid_t uuid_dcerpc_dnsserver = {
47         0x50abc2a4, 0x574d, 0x40b3,
48         { 0x9d, 0x66, 0xee, 0x4f, 0xd5, 0xfb, 0xa0, 0x76 }
49 };
50
51 static guint16 ver_dcerpc_dnsserver = 5;
52
53 static dcerpc_sub_dissector dcerpc_dnsserver_dissectors[] = {
54         { UNKNOWN_00, "Unknown 0x00", NULL, NULL },
55         { UNKNOWN_01, "Unknown 0x01", NULL, NULL },
56         { UNKNOWN_02, "Unknown 0x02", NULL, NULL },
57         { UNKNOWN_03, "Unknown 0x02", NULL, NULL },
58
59         { 0, NULL, NULL,  NULL }
60 };
61
62 static const value_string dnsserver_opnum_vals[] = {
63         { UNKNOWN_00, "Unknown 0x00" },
64         { UNKNOWN_01, "Unknown 0x01" },
65         { UNKNOWN_02, "Unknown 0x02" },
66         { UNKNOWN_03, "Unknown 0x03" },
67         { 0, NULL }
68 };
69
70 void
71 proto_register_dcerpc_dnsserver(void)
72 {
73         static hf_register_info hf[] = {
74
75                 /* Global indexes */
76
77                 { &hf_rc,
78                   { "Return code", "dnsserver.rc", FT_UINT32, BASE_HEX,
79                     VALS(NT_errors), 0x0, "Return code", HFILL }},
80
81                 { &hf_opnum,
82                   { "Operation", "dnsserver.opnum", FT_UINT16, BASE_DEC,
83                     VALS(dnsserver_opnum_vals), 0x0, "Operation", HFILL }},
84         };
85
86         static gint *ett[] = {
87                 &ett_dnsserver
88         };
89
90         proto_dcerpc_dnsserver = proto_register_protocol(
91                 "Windows 2000 DNS", "DNSSERVER", "dnsserver");
92
93         proto_register_field_array(proto_dcerpc_dnsserver, hf, array_length(hf));
94
95         proto_register_subtree_array(ett, array_length(ett));
96 }
97
98 void
99 proto_reg_handoff_dcerpc_dnsserver(void)
100 {
101         /* Register protocol as dcerpc */
102
103         dcerpc_init_uuid(
104                 proto_dcerpc_dnsserver, ett_dnsserver, &uuid_dcerpc_dnsserver,
105                 ver_dcerpc_dnsserver, dcerpc_dnsserver_dissectors, hf_opnum);
106 }