Overview
Comment: | Additional improvements |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a00671c11b190935089c7fd3c02ed52f |
User & Date: | rkeene on 2014-02-05 09:04:11 |
Other Links: | manifest | tags |
Context
2014-02-05
| ||
09:06 | Reverted default port changed inadvertantly and added comments check-in: 69c6325220 user: rkeene tags: trunk | |
09:04 | Additional improvements check-in: a00671c11b user: rkeene tags: trunk | |
09:01 | Added support for a "no logging" compile-time option (for now) and updated to support sendfile restarts check-in: c7e703e4e5 user: rkeene tags: trunk | |
Changes
Modified filed.c from [f27d202156] to [980ea4ded8].
︙ | |||
200 201 202 203 204 205 206 | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | - + | lseek(fd, 0, SEEK_SET); cache->fd = fd; cache->len = len; cache->path = strdup(path); /* XXX:TODO: Determine */ |
︙ | |||
283 284 285 286 287 288 289 | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | - + | } return(path); } /* Return an error page */ static void filed_error_page(FILE *fp, const char *date_current, int error_number) { |
︙ | |||
422 423 424 425 426 427 428 | 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | - + + + | /* Reset failure count*/ failure_count = 0; /* Handle socket */ filed_handle_client(fd); } |
︙ |