aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2012-03-27 02:08:48 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2012-03-27 02:08:48 +0000
commit2570bef0c20500e7388da05e486ee1575f9cdda3 (patch)
treed5340b93cafde0ae7f1ca8b6a653cfdf6417e223 /epan/dissectors/packet-tcp.h
parentc13c14429b3eef3967bed814a853345cd30326df (diff)
When storing sequence analysis results, add (raw) sequence number and
ack number to the lookup key (which was previously just the frame number). This helps with situations where multiple segments of the same TCP conversation can be found in the same frame in a capture (e.g. with LTE user-plane traffic carried in logged MAC or RLC frames). svn path=/trunk/; revision=41788
Diffstat (limited to 'epan/dissectors/packet-tcp.h')
-rw-r--r--epan/dissectors/packet-tcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
index d6ce76285c..002cb67326 100644
--- a/epan/dissectors/packet-tcp.h
+++ b/epan/dissectors/packet-tcp.h
@@ -118,7 +118,7 @@ struct tcp_acked {
guint32 rto_frame;
nstime_t rto_ts; /* Time since previous packet for
retransmissions. */
- guint16 flags;
+ guint16 flags; /* see TCP_A_* in packet-tcp.c */
guint32 dupack_num; /* dup ack number */
guint32 dupack_frame; /* dup ack to frame # */
guint32 bytes_in_flight; /* number of bytes in flight */