From Todd Sabin: allocate the buffer for the decrypted payload, rather
[obnox/wireshark/wip.git] / packet-dcerpc-dtsprovider.c
1 /* packet-dcerpc-dtsprovider.c
2  * Routines for dcerpc Time 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/time.tar.gz time/service/dtsprovider.idl
6  *
7  * $Id: packet-dcerpc-dtsprovider.c,v 1.4 2002/10/15 05:21:02 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 #include "packet-dcerpc-dce122.h"
43
44 static int proto_dtsprovider = -1;
45 static int hf_dtsprovider_opnum = -1;
46 static int hf_dtsprovider_status = -1;
47
48
49 static gint ett_dtsprovider = -1;
50
51
52 static e_uuid_t uuid_dtsprovider = { 0xbfca1238, 0x628a, 0x11c9, { 0xa0, 0x73, 0x08, 0x00, 0x2b, 0x0d, 0xea, 0x7a } };
53 static guint16  ver_dtsprovider = 1;
54
55
56 static dcerpc_sub_dissector dtsprovider_dissectors[] = {
57     { 0, "ContactProvider", NULL, NULL},
58     { 1, "ServerRequestProviderTime", NULL, NULL},
59     { 0, NULL, NULL, NULL }
60 };
61
62 static const value_string dtsprovider_opnum_vals[] = {
63     { 0, "ContactProvider" },
64     { 1, "ServerRequestProviderTime" },
65     { 0, NULL }
66 };
67
68 void
69 proto_register_dtsprovider (void)
70 {
71         static hf_register_info hf[] = {
72           { &hf_dtsprovider_opnum,
73             { "Operation", "dtsprovider.opnum", FT_UINT16, BASE_DEC,
74               VALS(dtsprovider_opnum_vals), 0x0, "Operation", HFILL }},
75           { &hf_dtsprovider_status,
76             { "Status", "dtsprovider.status", FT_UINT32, BASE_DEC,
77               VALS(dce_error_vals), 0x0, "Return code, status of executed command", HFILL }}
78         };
79
80         static gint *ett[] = {
81                 &ett_dtsprovider,
82         };
83         proto_dtsprovider = proto_register_protocol ("DCE Distributed Time Service Provider", "DTSPROVIDER", "dtsprovider");
84         proto_register_field_array (proto_dtsprovider, hf, array_length (hf));
85         proto_register_subtree_array (ett, array_length (ett));
86 }
87
88 void
89 proto_reg_handoff_dtsprovider (void)
90 {
91         /* Register the protocol as dcerpc */
92         dcerpc_init_uuid (proto_dtsprovider, ett_dtsprovider, &uuid_dtsprovider, ver_dtsprovider, dtsprovider_dissectors, hf_dtsprovider_opnum);
93 }