aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.h
diff options
context:
space:
mode:
Diffstat (limited to 'packet-tcp.h')
-rw-r--r--packet-tcp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-tcp.h b/packet-tcp.h
index e8ae0f8f72..5e4c34184b 100644
--- a/packet-tcp.h
+++ b/packet-tcp.h
@@ -1,6 +1,6 @@
/* packet-tcp.h
*
- * $Id: packet-tcp.h,v 1.8 2001/10/01 08:29:35 guy Exp $
+ * $Id: packet-tcp.h,v 1.9 2002/02/18 23:51:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -28,8 +28,9 @@
* Private data passed from the TCP dissector to subdissectors.
*/
struct tcpinfo {
+ guint32 seq; /* Sequence number of first byte in the data */
gboolean is_reassembled; /* This is reassembled data. */
- gboolean urgent; /* TRUE if "urgent_pointer is valid */
+ gboolean urgent; /* TRUE if "urgent_pointer" is valid */
guint16 urgent_pointer; /* Urgent pointer value for the current packet. */
};