Add a separate hash table to the reassembly code for reassembled
[obnox/wireshark/wip.git] / packet-dcerpc-dfs.c
1 /* packet-dcerpc-dfs.c
2  * Routines for SMB \\PIPE\\netdfs packet disassembly
3  * Copyright 2001, Tim Potter <tpot@samba.org>
4  *
5  * $Id: packet-dcerpc-dfs.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 #include <glib.h>
31 #include <epan/packet.h>
32 #include "packet-dcerpc.h"
33 #include "packet-dcerpc-dfs.h"
34
35 static int proto_dcerpc_dfs = -1;
36 static gint ett_dcerpc_dfs = -1;
37
38 static e_uuid_t uuid_dcerpc_dfs = {
39         0x4fc742e0, 0x4a10, 0x11cf,
40         { 0x82, 0x73, 0x00, 0xaa, 0x00, 0x4a, 0xe6, 0x73 }
41 };
42
43 static guint16 ver_dcerpc_dfs = 3;
44
45 static dcerpc_sub_dissector dcerpc_dfs_dissectors[] = {
46         { DFS_EXIST, "DFS_EXIST", NULL, NULL },
47         { DFS_ADD, "DFS_ADD", NULL, NULL },
48         { DFS_REMOVE, "DFS_REMOVE", NULL, NULL },
49         { DFS_GET_INFO, "DFS_GET_INFO", NULL, NULL },
50         { DFS_ENUM, "DFS_ENUM", NULL, NULL },
51
52         {0, NULL, NULL,  NULL },
53 };
54
55 void 
56 proto_register_dcerpc_dfs(void)
57 {
58         static gint *ett[] = {
59                 &ett_dcerpc_dfs,
60         };
61
62         proto_dcerpc_dfs = proto_register_protocol(
63                 "Microsoft Distributed File System", "DFS", "dfs");
64
65         proto_register_subtree_array(ett, array_length(ett));
66 }
67
68 void
69 proto_reg_handoff_dcerpc_dfs(void)
70 {
71         /* Register protocol as dcerpc */
72
73         dcerpc_init_uuid(proto_dcerpc_dfs, ett_dcerpc_dfs, &uuid_dcerpc_dfs,
74                          ver_dcerpc_dfs, dcerpc_dfs_dissectors);
75 }