aboutsummaryrefslogtreecommitdiffstats
path: root/follow.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-05-24 23:07:41 +0000
committerGuy Harris <guy@alum.mit.edu>2001-05-24 23:07:41 +0000
commitc41120f6acf29060cc9bbdd68ac8fa37b7ef4f80 (patch)
tree5c1dc79bb440de3c6241163f8c60c6cd69ebb8af /follow.c
parent8743489efacaa7e038152972826ed0921b559bf3 (diff)
Fix to TCP reassembly code for retransmitted data, from Edgar Iglesias.
svn path=/trunk/; revision=3447
Diffstat (limited to 'follow.c')
-rw-r--r--follow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/follow.c b/follow.c
index 5b688e44b1..3ecb36f613 100644
--- a/follow.c
+++ b/follow.c
@@ -1,6 +1,6 @@
/* follow.c
*
- * $Id: follow.c,v 1.26 2000/08/24 21:05:16 deniel Exp $
+ * $Id: follow.c,v 1.27 2001/05/24 23:07:40 guy Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -223,6 +223,7 @@ reassemble_tcp( u_long sequence, u_long length, const char* data,
data += new_len;
data_length -= new_len;
}
+ sc.dlen = data_length;
sequence = seq[src_index];
length = newseq - seq[src_index];