Replace the types from sys/types.h and netinet/in.h by their glib.h
[obnox/wireshark/wip.git] / packet-dcerpc-oxid.c
1 /* packet-dcerpc-oxid.c
2  * Routines for DCOM OXID Resolver
3  * Copyright 2001, Todd Sabin <tas@webspan.net>
4  *
5  * $Id: packet-dcerpc-oxid.c,v 1.5 2002/08/02 23:35:48 jmayer 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 <string.h>
31
32 #include <glib.h>
33 #include <epan/packet.h>
34 #include "packet-dcerpc.h"
35
36 static int proto_oxid = -1;
37
38 static gint ett_oxid = -1;
39
40 static e_uuid_t uuid_oxid = { 0x99fcfec4, 0x5260, 0x101b, { 0xbb, 0xcb, 0x00, 0xaa, 0x00, 0x21, 0x34, 0x7a } };
41 static guint16  ver_oxid = 0;
42
43 static dcerpc_sub_dissector oxid_dissectors[] = {
44     { 0, "ResolveOxid", NULL, NULL },
45     { 1, "SimplePing", NULL, NULL },
46     { 2, "ComplexPing", NULL, NULL },
47     { 3, "ServerAlive", NULL, NULL },
48     { 0, NULL, NULL, NULL },
49 };
50
51 void
52 proto_register_oxid (void)
53 {
54 #if 0
55         static hf_register_info hf[] = {
56         };
57 #endif
58
59         static gint *ett[] = {
60                 &ett_oxid
61         };
62         proto_oxid = proto_register_protocol ("DCOM OXID Resolver", "OXID", "oxid");
63 #if 0
64         proto_register_field_array (proto_oxid, hf, array_length (hf));
65 #endif
66         proto_register_subtree_array (ett, array_length (ett));
67 }
68
69 void
70 proto_reg_handoff_oxid (void)
71 {
72         /* Register the protocol as dcerpc */
73         dcerpc_init_uuid (proto_oxid, ett_oxid, &uuid_oxid, ver_oxid, oxid_dissectors, -1);
74 }