Indentation & whitespace cleanup (including: "4 space tabs" ==> spaces)
[obnox/wireshark/wip.git] / epan / dissectors / packet-dcerpc-dtsprovider.c
1 /* packet-dcerpc-dtsprovider.c
2  * Routines for dcerpc Time server 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/time.tar.gz time/service/dtsprovider.idl
6  *
7  * $Id$
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
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 <glib.h>
38 #include <epan/packet.h>
39 #include "packet-dcerpc.h"
40 #include "packet-dcerpc-dce122.h"
41
42 static int proto_dtsprovider = -1;
43 static int hf_dtsprovider_opnum = -1;
44 static int hf_dtsprovider_status = -1;
45
46
47 static gint ett_dtsprovider = -1;
48
49
50 static e_uuid_t uuid_dtsprovider = { 0xbfca1238, 0x628a, 0x11c9, { 0xa0, 0x73, 0x08, 0x00, 0x2b, 0x0d, 0xea, 0x7a } };
51 static guint16  ver_dtsprovider = 1;
52
53
54 static dcerpc_sub_dissector dtsprovider_dissectors[] = {
55         { 0, "ContactProvider", NULL, NULL},
56         { 1, "ServerRequestProviderTime", NULL, NULL},
57         { 0, NULL, NULL, NULL }
58 };
59
60 void
61 proto_register_dtsprovider (void)
62 {
63         static hf_register_info hf[] = {
64           { &hf_dtsprovider_opnum,
65             { "Operation", "dtsprovider.opnum", FT_UINT16, BASE_DEC,
66               NULL, 0x0, NULL, HFILL }},
67           { &hf_dtsprovider_status,
68             { "Status", "dtsprovider.status", FT_UINT32, BASE_DEC,
69               VALS(dce_error_vals), 0x0, "Return code, status of executed command", HFILL }}
70         };
71
72         static gint *ett[] = {
73                 &ett_dtsprovider,
74         };
75         proto_dtsprovider = proto_register_protocol ("DCE Distributed Time Service Provider", "DTSPROVIDER", "dtsprovider");
76         proto_register_field_array (proto_dtsprovider, hf, array_length (hf));
77         proto_register_subtree_array (ett, array_length (ett));
78 }
79
80 void
81 proto_reg_handoff_dtsprovider (void)
82 {
83         /* Register the protocol as dcerpc */
84         dcerpc_init_uuid (proto_dtsprovider, ett_dtsprovider, &uuid_dtsprovider, ver_dtsprovider, dtsprovider_dissectors, hf_dtsprovider_opnum);
85 }