Changeset 766
- Timestamp:
- 05/30/07 20:14:55 (2 years ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/connection.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r765 r766 1 1 2007-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. 2 7 3 8 * cherokee/server.c (cherokee_server_initialize): Not being able cherokee/trunk/cherokee/connection.c
r659 r766 807 807 if (sent == conn->buffer.len) { 808 808 cherokee_buffer_clean (&conn->buffer); 809 ret = ret_ok; 809 810 } else if (sent != 0) { 810 811 cherokee_buffer_move_to_begin (&conn->buffer, sent); 812 ret = ret_eagain; 811 813 } 812 814 … … 818 820 } 819 821 820 return ret _ok;822 return ret; 821 823 } 822 824