Never put an entry into the hash table for an NT Cancel request, even if
[obnox/wireshark/wip.git] / packet-dcerpc-epm.c
1 /* packet-dcerpc-epm.c
2  * Routines for dcerpc endpoint mapper dissection
3  * Copyright 2001, Todd Sabin <tas@webspan.net>
4  *
5  * $Id: packet-dcerpc-epm.c,v 1.1 2001/07/11 01:25:44 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 "packet.h"
39 #include "packet-dcerpc.h"
40
41
42 static int proto_epm = -1;
43
44 static gint ett_epm = -1;
45
46
47 static e_uuid_t uuid_epm = { 0xe1af8308, 0x5d1f, 0x11c9, { 0x91, 0xa4, 0x08, 0x00, 0x2b, 0x14, 0xa0, 0xfa } };
48 static guint16  ver_epm = 3;
49
50
51 static dcerpc_sub_dissector epm_dissectors[] = {
52     { 0, "ept_insert", NULL, NULL },
53     { 1, "ept_delete", NULL, NULL },
54     { 2, "ept_lookup", NULL, NULL },
55     { 3, "ept_map", NULL, NULL },
56     { 4, "ept_lookup_handle_free", NULL, NULL },
57     { 5, "ept_inq_object", NULL, NULL },
58     { 6, "ept_mgmt_delete", NULL, NULL },
59     { 0, NULL, NULL, NULL },
60 };
61
62
63 void
64 proto_register_epm (void)
65 {
66 #if 0
67         static hf_register_info hf[] = {
68         };
69 #endif
70
71         static gint *ett[] = {
72                 &ett_epm,
73         };
74         proto_epm = proto_register_protocol ("DCE/RPC Endpoint Mapper", "EPM", "epm");
75 #if 0
76         proto_register_field_array (proto_epm, hf, array_length (hf));
77 #endif
78         proto_register_subtree_array (ett, array_length (ett));
79 }
80
81 void
82 proto_reg_handoff_epm (void)
83 {
84         /* Register the protocol as dcerpc */
85         dcerpc_init_uuid (proto_epm, ett_epm, &uuid_epm, ver_epm, epm_dissectors);
86 }