Remove all $Id$ from top of file
[metze/wireshark/wip.git] / epan / dissectors / packet-dcerpc-rs_bind.c
1 /* packet-dcerpc-rs_bind.c
2  *
3  * Routines for DFS/RS_BIND
4  * Copyright 2003, Jaime Fournier <Jaime.Fournier@hush.com>
5  * This information is based off the released idl files from opengroup.
6  * ftp://ftp.opengroup.org/pub/dce122/dce/src/security.tar.gz security/idl/rs_bind.idl
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 #include "config.h"
28
29
30 #include <glib.h>
31 #include <epan/packet.h>
32 #include "packet-dcerpc.h"
33 #include "packet-dcerpc-dce122.h"
34
35
36 static int proto_rs_bind = -1;
37 static int hf_rs_bind_opnum = -1;
38
39 static gint ett_rs_bind = -1;
40
41
42 static e_uuid_t uuid_rs_bind =
43   { 0xd46113d0, 0xa848, 0x11cb, {0xb8, 0x63, 0x08, 0x00, 0x1e, 0x04, 0x6a,
44                                  0xa5}
45
46 };
47 static guint16 ver_rs_bind = 2;
48
49
50 static dcerpc_sub_dissector rs_bind_dissectors[] = {
51   {0, "get_update_site", NULL, NULL},
52   {0, NULL, NULL, NULL},
53
54 };
55
56 void
57 proto_register_rs_bind (void)
58 {
59   static hf_register_info hf[] = {
60         { &hf_rs_bind_opnum,
61                 { "Operation", "rs_bind.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }},
62   };
63
64   static gint *ett[] = {
65     &ett_rs_bind,
66   };
67   proto_rs_bind =
68     proto_register_protocol ("DCE/RPC RS_BIND", "RS_BIND", "rs_bind");
69   proto_register_field_array (proto_rs_bind, hf, array_length (hf));
70   proto_register_subtree_array (ett, array_length (ett));
71 }
72
73 void
74 proto_reg_handoff_rs_bind (void)
75 {
76   /* Register the protocol as dcerpc */
77   dcerpc_init_uuid (proto_rs_bind, ett_rs_bind, &uuid_rs_bind, ver_rs_bind,
78                     rs_bind_dissectors, hf_rs_bind_opnum);
79 }