Hi,

I think i have one fix for htnet/Connection.cc, function Read_Partial

line
    while (count < 0 && errno == EINTR && !need_io_stop);

should be replaced with 
     while (count <= 0 && errno == EINTR && !need_io_stop);

because when select says threis data to read, but read return 0,
that means  EOF, i.e. connection was closed.

Bye

VAldas


------------------------------------
To unsubscribe from the htdig3-dev mailing list, send a message to
[EMAIL PROTECTED] 
You will receive a message to confirm this. 


Reply via email to