diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-09-17 00:02:31 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-09-17 00:02:31 +0000 |
commit | b7b80d94bee66b7edbd606c5ce6afdeb009bd5b8 (patch) | |
tree | 56b81de26d3859239959edef327f0779f660c99b /rpc_defrag.h | |
parent | ef461aa94b31f7f10b710ecfbfcb4a375690c049 (diff) | |
download | wireshark-b7b80d94bee66b7edbd606c5ce6afdeb009bd5b8.tar.gz wireshark-b7b80d94bee66b7edbd606c5ce6afdeb009bd5b8.tar.bz2 wireshark-b7b80d94bee66b7edbd606c5ce6afdeb009bd5b8.zip |
Move a pile of protocol-related headers from the top-level source
directory to the epan directory. Some of them should perhaps ultimately
be moved to epan/dissectors, if they pertain only to stuff exported by a
particular dissector.
Fix Gerald's e-mail address in files we're moving.
svn path=/trunk/; revision=15844
Diffstat (limited to 'rpc_defrag.h')
-rw-r--r-- | rpc_defrag.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/rpc_defrag.h b/rpc_defrag.h deleted file mode 100644 index c84317c467..0000000000 --- a/rpc_defrag.h +++ /dev/null @@ -1,43 +0,0 @@ -/* rpc_defrag.h - * Declarations for RPC defragmentation - * - * $Id$ - * - * Ethereal - Network traffic analyzer - * By Gerald Combs <gerald@ethereal.com> - * Copyright 1998 Gerald Combs - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#ifndef __RPC_DEFRAG_H__ -#define __RPC_DEFRAG_H__ - -/* - * RPC-over-TCP fragmentation. - */ -#define RPC_RM_LASTFRAG 0x80000000L -#define RPC_RM_FRAGLEN 0x7fffffffL - -typedef gboolean (*rec_dissector_t)(tvbuff_t *, packet_info *, proto_tree *, - tvbuff_t *, fragment_data *, gboolean, guint32, gboolean); - -extern void show_rpc_fraginfo(tvbuff_t *tvb, tvbuff_t *frag_tvb, - proto_tree *tree, guint32 rpc_rm, fragment_data *ipfd_head, packet_info *pinfo); -extern int dissect_rpc_fragment(tvbuff_t *tvb, int offset, packet_info *pinfo, - proto_tree *tree, rec_dissector_t dissector, gboolean is_heur, - int proto, int ett, gboolean defragment, gboolean first_pdu); - -#endif /* __RPC_DEFRAG_H__ */ |