aboutsummaryrefslogtreecommitdiffstats
path: root/epan/circuit.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-11-28 08:12:07 +0000
committerGuy Harris <guy@alum.mit.edu>2002-11-28 08:12:07 +0000
commit436a7d98576dde33fccdfd0c24a59d72b8209838 (patch)
treedef2024898fb0e4f8d65f4fac4c0e61f746a6454 /epan/circuit.h
parenta32fd6466339831f949e30c4c04061a50aacf695 (diff)
Don't keep the first frame around for circuits; we assume that a given
circuit begins either at the beginning of the capture or right after the previous circuit ends. svn path=/trunk/; revision=6694
Diffstat (limited to 'epan/circuit.h')
-rw-r--r--epan/circuit.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/circuit.h b/epan/circuit.h
index c635336c60..d6690f400a 100644
--- a/epan/circuit.h
+++ b/epan/circuit.h
@@ -1,7 +1,7 @@
/* circuit.h
* Routines for building lists of packets that are part of a "circuit"
*
- * $Id: circuit.h,v 1.3 2002/11/08 01:00:07 guy Exp $
+ * $Id: circuit.h,v 1.4 2002/11/28 08:12:07 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -37,7 +37,6 @@ typedef struct circuit_key {
typedef struct circuit {
struct circuit *next; /* pointer to next circuit with given circuit ID */
- guint32 first_frame; /* # of first frame for that circuit */
guint32 last_frame; /* # of last frame for that circuit */
guint32 index; /* unique ID for circuit */
GSList *data_list; /* list of data associated with circuit */