Re: Breaking a keep alive connection

2004-10-01 Thread Bill Moseley
On Wed, Sep 29, 2004 at 09:50:11AM -0700, Bill Moseley wrote: I'm using keep alives and the form of $ua-get() that uses a callback function to read the data as it arrives. If the callback function dies will the connection always be broken? Well, according to ethereal, it seems like the

Re: Breaking a keep alive connection

2004-10-01 Thread Gisle Aas
Bill Moseley [EMAIL PROTECTED] writes: I'm using keep alives and the form of $ua-get() that uses a callback function to read the data as it arrives. If the callback function dies will the connection always be broken? Yes, unless it dies after the last part of the response has actually been

Re: Breaking a keep alive connection

2004-10-01 Thread Bill Moseley
Hi Gisle, On Wed, Sep 29, 2004 at 10:47:23AM -0700, Gisle Aas wrote: Bill Moseley [EMAIL PROTECTED] writes: I'm using keep alives and the form of $ua-get() that uses a callback function to read the data as it arrives. If the callback function dies will the connection always be broken?

Breaking a keep alive connection

2004-09-29 Thread Bill Moseley
I'm using keep alives and the form of $ua-get() that uses a callback function to read the data as it arrives. If the callback function dies will the connection always be broken? That is, will the next request to that server be a new connection, not an existing open connection from a previous keep