Changeset 2072
- Timestamp:
- 02/10/2008 06:49:39 PM (5 months ago)
- Files:
-
- (root) (modified) (3 props)
- branches/lighttpd-1.4.x/NEWS (modified) (1 diff)
- branches/lighttpd-1.4.x/src/network_linux_sendfile.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
- Property bzr:revision-id:v3-none set to
2073 jan@kneschke.de-20080210184328-0ab8yqv19bb25j4o - Property bzr:file-ids set
- Property bzr:revision-info set to
timestamp: 2008-02-10 19:43:28.592000008 +0100
committer: Jan Kneschke <jan@kneschke.de>
properties:
branch-nick: lighttpd-1.4.x
- Property bzr:revision-id:v3-none set to
branches/lighttpd-1.4.x/NEWS
r2066 r2072 24 24 * fixed bogus "cgi died ?" if we kill the CGI process on shutdown 25 25 * fixed ECONNRESET handling in network-openssl 26 * fixed handling of EAGAIN in network-linux-sendfile (#657) 26 27 27 28 - 1.4.18 - 2007-09-09 branches/lighttpd-1.4.x/src/network_linux_sendfile.c
r1386 r2072 163 163 case EAGAIN: 164 164 case EINTR: 165 /* ok, we can't send more, let's try later again */ 165 166 r = 0; 166 167 break; … … 173 174 return -1; 174 175 } 175 } 176 177 if (r == 0) { 176 } else if (r == 0) { 178 177 int oerrno = errno; 179 178 /* We got an event to write but we wrote nothing

