aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-04 05:41:37 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-04 05:41:37 +0000
commit53c2e25a9f3a7c1a46283e704cb7a3c030c14df7 (patch)
tree1d416872e046e73f1854c1dc2eee9de0a5037237 /smb.h
parent1c5696f297e30defd8b3f6e54f48d38554305b0b (diff)
There can be more than one DCE RPC call per frame, e.g. there can be
multiple NetBIOS-over-TCP session service messages in a TCP segment, and they can contain the final portions of different DCERPC calls. Don't assume a frame number is sufficient to identify DCE RPC calls. svn path=/trunk/; revision=7777
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/smb.h b/smb.h
index 25afc94fdc..e3fe57a3b9 100644
--- a/smb.h
+++ b/smb.h
@@ -2,7 +2,7 @@
* Defines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: smb.h,v 1.52 2003/04/13 23:58:37 guy Exp $
+ * $Id: smb.h,v 1.53 2003/06/04 05:41:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -289,11 +289,6 @@ typedef struct conv_tables {
/* these two tables are used to match requests with responses */
GHashTable *unmatched;
GHashTable *matched;
- /* this tables is used by DCERPC over SMB reassembly*/
- GHashTable *dcerpc_fid_to_frame;
- /* this table is to keep track of which frames we saw which dcerpc
- pdu in */
- GHashTable *dcerpc_frame_to_dcerpc_pdu;
/* This table is used to track TID->services for a conversation */
GHashTable *tid_service;