Clean up white space.
[obnox/wireshark/wip.git] / rpc_defrag.h
1 /* rpc-defrag.h
2  * Declarations for RPC defragmentation
3  *
4  * $Id: rpc_defrag.h,v 1.2 2002/02/19 03:43:08 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __RPC_DEFRAG_H__
26 #define __RPC_DEFRAG_H__
27
28 /*
29  * RPC-over-TCP fragmentation.
30  */
31 #define RPC_RM_LASTFRAG 0x80000000L
32 #define RPC_RM_FRAGLEN  0x7fffffffL
33
34 typedef gboolean (*rec_dissector_t)(tvbuff_t *, packet_info *, proto_tree *,
35         tvbuff_t *, fragment_data *, gboolean, guint32);
36
37 extern void show_rpc_fraginfo(tvbuff_t *tvb, tvbuff_t *frag_tvb,
38         proto_tree *tree, guint32 rpc_rm, fragment_data *ipfd_head);
39 extern int dissect_rpc_fragment(tvbuff_t *tvb, int offset, packet_info *pinfo,
40         proto_tree *tree, rec_dissector_t dissector, gboolean is_heur,
41         int proto, int ett, gboolean defragment);
42
43 #endif /* __RPC_DEFRAG_H__ */