tcptrace-bugs HTTP module acked sequence comparison fix

From: Daikichi Osuga (osuga@mml.yrp.nttdocomo.co.jp)
Date: 06/11/02


Message-ID: <04b901c21140$06256b90$f23315ac@mmlad.yrp.nttdocomo.co.jp>
From: "Daikichi Osuga" <osuga@mml.yrp.nttdocomo.co.jp>
Subject: tcptrace-bugs HTTP module acked sequence comparison fix
Date: Tue, 11 Jun 2002 21:03:39 +0900

TCP ack field means next expected sequence.
so, acked sequence comparison should be greater.

--
Daikichi Osuga

*** mod_http.c 2002/03/20 07:08:31 --- mod_http.c 2002/06/11 11:21:21 *************** *** 613,619 **** for (pts = phead->next; pts != NULL; pts = pts->next) { /* fprintf(stderr,"Checking pos %ld against %ld\n", */ /* position, pts->position); */ ! if (pts->position >= position) { /* sent after this one */ return(pts->thetime); } --- 613,619 ---- for (pts = phead->next; pts != NULL; pts = pts->next) { /* fprintf(stderr,"Checking pos %ld against %ld\n", */ /* position, pts->position); */ ! if (pts->position > position) { /* sent after this one */ return(pts->thetime); }



This archive was generated by hypermail 2b30 : 06/11/02 EDT