Date: Thu, 15 Feb 2001 08:13:29 -0500 (EST) From: Nobody <nobody> Message-Id: <200102151313.IAA20856@masaka.cs.ohiou.edu> Subject: Form data from the Web
The following data was entered at http://www.tcptrace.org/bugs.html:
email: karen.heron@WinComSystems.com
problem:
When using the filtering, found that it wasn't filtering on server throughput - no matter whether the filter specified server or client, it was always filtering on client throughput. Found this snippet of code in filter.c:
u_llong
VFuncClntTput(
tcp_pair *ptp)
{
return(VFuncTput(&ptp->a2b));
}
u_llong
VFuncServTput(
tcp_pair *ptp)
{
return(VFuncTput(&ptp->a2b));
}
Believe the problem is the VFuncServTput function should be:
u_llong
VFuncServTput(
tcp_pair *ptp)
{
return(VFuncTput(&ptp->b2a));
}
Rebuilt and tested this change, and it appears to work correctly.
This archive was generated by hypermail 2b30 : 02/15/01 EST