aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2002-01-05 04:12:17 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2002-01-05 04:12:17 +0000
commit0b9b02c6ea4bbf4a7792aa1493b507fd68e8a87b (patch)
treeac264635defc42eb14ee180db1b32d9b5032458c /epan/plugins.c
parent3ed03cadf65462aa5253098f0df781022cb3a0ed (diff)
Long NCP traces can easily have many packets whose "uniqueness"
variables wrap-around. Since the request/reply packets are related via a hash based on these uniqueness variables, long NCP traces can have mis-matches reqeust/reply records. Thus, only do the hash-lookup for the reply packet during the first sequential scan of the trace file. Once the pertinent info is found, store it in the packet's private data area. Since the memory allocated for the hash and for the structures that make up the keys are no longer needed after the first sequential run through the trace file, arrange to free that memory after the first sequential run. Similar to the register_init_routine() that allows dissectors to register callbacks for calling *before* a capture file is loaded, set up a register_postseq_cleanup_routine() function that allows dissectors to register callbacks for calling *after* the first sequential run-through of the trace file is made. This is not a *final* cleanup callback, since Ethereal will still have that trace file open for random-access reading. I didn't have tethereal call postseq_cleanup_all_protocols() since tethereal doesn't keep the trace file open for random-access reading. I could easily be swayed to make tethereal call that function, however. svn path=/trunk/; revision=4484
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 1e3730dd01..e2b6779330 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.44 2001/12/03 10:00:21 guy Exp $
+ * $Id: plugins.c,v 1.45 2002/01/05 04:12:16 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -293,6 +293,7 @@ init_plugins(const char *plugin_dir)
patable.p_col_set_str = col_set_str;
patable.p_register_init_routine = register_init_routine;
+ patable.p_register_postseq_cleanup_routine = register_postseq_cleanup_routine;
patable.p_conversation_new = conversation_new;
patable.p_find_conversation = find_conversation;
patable.p_match_strval = match_strval;