aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-12 04:26:35 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-12 04:26:35 +0000
commit45942c1c41dfad28ac1aeca038e69c888d9a95c4 (patch)
tree54cc571281ee1841dcec231f388eeb21a99e5b3a /packet-tcp.c
parentb4bad304ae5340fecef3197dd753e74614f454d3 (diff)
In the TCP stream following code, we don't use the time stamp field in
the stuff we write to the temporary file, so don't bother writing it. Keep track of the two sides of the TCP stream by keeping track of the source address *and* port, so that we correctly handle connections between two ports on the same machine. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1712 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index c2e11fc62e..3933e63016 100644
--- a/packet-tcp.c
+++ b/packet-tcp.c
@@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
- * $Id: packet-tcp.c,v 1.58 2000/02/28 08:17:31 guy Exp $
+ * $Id: packet-tcp.c,v 1.59 2000/03/12 04:26:35 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -618,9 +618,7 @@ reas:
&pi.net_src,
&pi.net_dst,
pi.srcport,
- pi.destport,
- fd->rel_secs,
- fd->rel_usecs);
+ pi.destport);
}
}