aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-07-02 17:42:48 -0400
committerAnders Broman <a.broman58@gmail.com>2014-07-03 07:32:11 +0000
commitd70e56a733a1d432dedc0dce7fbd992ef225d0c5 (patch)
tree4a7747a7654d5a14c55b8b288dde450b48d6c476 /epan
parent2dbab6df183148c370f6ea501c1c00974364407b (diff)
Revert to 3ms if we don't have the handshake
Change-Id: I96b23677f3050e9c62edd49f26d50d8b4addcf58 Reviewed-on: https://code.wireshark.org/review/2784 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
index 107efa3f62..601bf46616 100644
--- a/epan/dissectors/packet-tcp.c
+++ b/epan/dissectors/packet-tcp.c
@@ -1179,7 +1179,7 @@ finished_fwd:
guint64 t;
guint64 ooo_thres;
if (tcpd->ts_first_rtt.nsecs == 0 && tcpd->ts_first_rtt.secs == 0)
- ooo_thres = 200000000;
+ ooo_thres = 3000000;
else
ooo_thres = tcpd->ts_first_rtt.nsecs + tcpd->ts_first_rtt.secs*1000000000;