The Windows 2000 global catalog is LDAP on TCP port 3268, as per IANA assigned
[metze/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.6 2003/06/26 04:30:28 tpot 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 int hf_opnum = -1;
39
40 static gint ett_oxid = -1;
41
42 static e_uuid_t uuid_oxid = { 0x99fcfec4, 0x5260, 0x101b, { 0xbb, 0xcb, 0x00, 0xaa, 0x00, 0x21, 0x34, 0x7a } };
43 static guint16  ver_oxid = 0;
44
45 static dcerpc_sub_dissector oxid_dissectors[] = {
46     { 0, "ResolveOxid", NULL, NULL },
47     { 1, "SimplePing", NULL, NULL },
48     { 2, "ComplexPing", NULL, NULL },
49     { 3, "ServerAlive", NULL, NULL },
50     { 0, NULL, NULL, NULL },
51 };
52
53 void
54 proto_register_oxid (void)
55 {
56         static hf_register_info hf[] = {
57                 { &hf_opnum,
58                   { "Operation", "oxid.opnum", FT_UINT16, BASE_DEC,
59                     NULL, 0x0, "", HFILL }},
60         };
61
62         static gint *ett[] = {
63                 &ett_oxid
64         };
65         proto_oxid = proto_register_protocol ("DCOM OXID Resolver", "OXID", "oxid");
66         proto_register_field_array (proto_oxid, hf, array_length (hf));
67         proto_register_subtree_array (ett, array_length (ett));
68 }
69
70 void
71 proto_reg_handoff_oxid (void)
72 {
73         header_field_info *hf_info;
74
75         /* Register the protocol as dcerpc */
76         dcerpc_init_uuid (proto_oxid, ett_oxid, &uuid_oxid, ver_oxid, oxid_dissectors, hf_opnum);
77
78         /* Set opnum strings from subdissector list */
79
80         hf_info = proto_registrar_get_nth(hf_opnum);
81         hf_info->strings = value_string_from_subdissectors(
82                 oxid_dissectors, array_length(oxid_dissectors));
83 }