Correctly dissect LSA security descriptors, at least as they appear
[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.2 2002/01/21 07:36:33 guy 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
31 #ifdef HAVE_SYS_TYPES_H
32 #include <sys/types.h>
33 #endif
34
35 #include <string.h>
36
37 #include <glib.h>
38 #include <epan/packet.h>
39 #include "packet-dcerpc.h"
40
41
42 static int proto_oxid = -1;
43
44 static gint ett_oxid = -1;
45
46 static e_uuid_t uuid_oxid = { 0x99fcfec4, 0x5260, 0x101b, { 0xbb, 0xcb, 0x00, 0xaa, 0x00, 0x21, 0x34, 0x7a } };
47 static guint16  ver_oxid = 0;
48
49
50 static dcerpc_sub_dissector oxid_dissectors[] = {
51     { 0, "ResolveOxid", NULL, NULL },
52     { 1, "SimplePing", NULL, NULL },
53     { 2, "ComplexPing", NULL, NULL },
54     { 3, "ServerAlive", NULL, NULL },
55     { 0, NULL, NULL, NULL },
56 };
57
58
59 void
60 proto_register_oxid (void)
61 {
62 #if 0
63         static hf_register_info hf[] = {
64         };
65 #endif
66
67         static gint *ett[] = {
68                 &ett_oxid,
69         };
70         proto_oxid = proto_register_protocol ("DCOM OXID Resolver", "OXID", "oxid");
71 #if 0
72         proto_register_field_array (proto_oxid, hf, array_length (hf));
73 #endif
74         proto_register_subtree_array (ett, array_length (ett));
75 }
76
77 void
78 proto_reg_handoff_oxid (void)
79 {
80         /* Register the protocol as dcerpc */
81         dcerpc_init_uuid (proto_oxid, ett_oxid, &uuid_oxid, ver_oxid, oxid_dissectors);
82 }