From: guy Date: Thu, 24 May 2001 23:07:41 +0000 (+0000) Subject: Fix to TCP reassembly code for retransmitted data, from Edgar Iglesias. X-Git-Url: http://git.samba.org/samba.git/?p=obnox%2Fwireshark%2Fwip.git;a=commitdiff_plain;h=24fd34eda0aeae6a19af4e70a329ceee1d8d261d Fix to TCP reassembly code for retransmitted data, from Edgar Iglesias. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3447 f5534014-38df-0310-8fa8-9805f1628bb7 --- diff --git a/AUTHORS b/AUTHORS index 9e693b94b2..e163420d0e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -649,6 +649,10 @@ Randy McEoin { Appletalk Data Stream Interface (used by AFP-over-TCP) support } +Edgar Iglesias { + Fix to TCP reassembly code for retransmitted data +} + Alain Magloire was kind enough to give his permission to use his version of snprintf.c. diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template index f015b9d73d..72698d0bc8 100644 --- a/doc/ethereal.pod.template +++ b/doc/ethereal.pod.template @@ -1107,6 +1107,7 @@ B. Eran Mann Andy Hood Randy McEoin + Edgar Iglesias Alain Magloire was kind enough to give his permission to use his version of snprintf.c. 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 * @@ -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];