aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-10-22 08:44:33 +0000
committerGuy Harris <guy@alum.mit.edu>2002-10-22 08:44:33 +0000
commit3205a6e888a6ca6a54cd67ab50358c4e2f63922b (patch)
treeb6fc40b46cf25808d4749ae87e9b9f853f0972ce /epan/epan.h
parentd97d0803b38fc101826a0bc1aaddf8850b42d676 (diff)
Add in a notion of "circuits", which are for virtual circuit-oriented
protocols (where there's a virtual circuit ID of some sort in packets) what conversations are for protocols ultimately running atop connectionless network layers. Have circuit type and ID values in the "packet_info" structure. Have the Frame Relay dissector set the circuit type and ID values, and have the Wellfleet compression protocol set up circuit information and store compression information with the circuit. svn path=/trunk/; revision=6471
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 24b02a79a7..b3efd355cc 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -1,6 +1,6 @@
/* epan.h
*
- * $Id: epan.h,v 1.14 2002/09/09 21:04:06 guy Exp $
+ * $Id: epan.h,v 1.15 2002/10/22 08:44:33 guy Exp $
*
* Ethereal Protocol Analyzer Library
*
@@ -36,8 +36,7 @@ void epan_init(const char * plugindir, void (register_all_protocols)(void),
void (register_all_handoffs)(void));
void epan_cleanup(void);
void epan_conversation_init(void);
-
-
+void epan_circuit_init(void);
/* A client will create one epan_t for an entire dissection session.
* A single epan_t will be used to analyze the entire sequence of packets,