Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7099ed9113cbd61d3ed7bbbca860a0cd |
User & Date: | rkeene on 2014-10-13 08:12:51 |
Other Links: | manifest | tags |
Context
2014-10-13
| ||
14:59 | Fixed file descriptor leaking introduced in [b4fa45b6aa] and made connection re-use more clean check-in: 679bcc1373 user: rkeene tags: trunk | |
08:12 | Post-release version increment check-in: 7099ed9113 user: rkeene tags: trunk | |
08:12 | Filed 1.10 check-in: dd8a7297f3 user: rkeene tags: trunk, 1.10 | |
Changes
Modified filed.c from [43b2c17e97] to [5391cbc0bc].
︙ | ︙ | |||
16 17 18 19 20 21 22 | #include <fcntl.h> #include <stdio.h> #include <errno.h> #include <time.h> #include <pwd.h> /* Compile time constants */ | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #include <fcntl.h> #include <stdio.h> #include <errno.h> #include <time.h> #include <pwd.h> /* Compile time constants */ #define FILED_VERSION "1.11" #define FILED_SENDFILE_MAX 16777215 #define FILED_MAX_FAILURE_COUNT 30 #define FILED_DEFAULT_TYPE "application/octet-stream" #define FILED_PATH_BUFFER_SIZE 1010 /* Default values */ #define PORT 80 |
︙ | ︙ |