Changeset 766

Show
Ignore:
Timestamp:
05/30/07 20:14:55 (2 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r765 r766  
    112007-05-30  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/connection.c (cherokee_connection_send): It wasn't 
     4        returning ret_eagain when there was remaining information in the 
     5        connection buffer. This bug showed up because both IE7 and FF2 had 
     6        problems loading some files on Windows. 
    27 
    38        * cherokee/server.c (cherokee_server_initialize): Not being able 
  • cherokee/trunk/cherokee/connection.c

    r659 r766  
    807807        if (sent == conn->buffer.len) { 
    808808                cherokee_buffer_clean (&conn->buffer); 
     809                ret = ret_ok; 
    809810        } else if (sent != 0) { 
    810811                cherokee_buffer_move_to_begin (&conn->buffer, sent); 
     812                ret = ret_eagain; 
    811813        } 
    812814         
     
    818820        } 
    819821 
    820         return ret_ok
     822        return ret
    821823} 
    822824