Re: [us...@httpd] Update on TCP reset issue (kinda fixed)

2010-04-26 Thread Jeff Trawick
On Wed, Apr 21, 2010 at 6:08 PM, Derek Chen-Becker dbec...@cpicorp.com wrote: Well, after a lot of digging and debugging, I found a hack that seems to fix my issue. If I modify the srclib/apr/support/unix/waitio.c file so that the line timeout    = f        ? f-timeout / 1000 : s-timeout /

[us...@httpd] Update on TCP reset issue (kinda fixed)

2010-04-21 Thread Derek Chen-Becker
Well, after a lot of digging and debugging, I found a hack that seems to fix my issue. If I modify the srclib/apr/support/unix/waitio.c file so that the line timeout= f? f-timeout / 1000 : s-timeout / 1000; becomes timeout= f? f-timeout / 100 : s-timeout / 100; (10