Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | d65da49b32281af87a2e70b0359eee427d18e47b |
User & Date: | rkeene on 2014-02-19 16:32:45 |
Other Links: | manifest | tags |
Context
2014-06-16
| ||
17:15 | Added support for SIGHUP flushing all caches check-in: 20fd373453 user: rkeene tags: trunk | |
17:00 | Added start of seccomp support check-in: 5e8db14086 user: rkeene tags: seccomp | |
2014-02-19
| ||
16:32 | Post-release version increment check-in: d65da49b32 user: rkeene tags: trunk | |
16:32 | Filed 1.8 check-in: 3e81ad96c8 user: rkeene tags: trunk, 1.8 | |
Changes
Modified filed.1 from [54b5f426ae] to [561444a505].
1 1 .PU 2 -.TH FILED 1 "19 Feb 14" "filed 1.8" 2 +.TH FILED 1 "19 Feb 14" "filed 1.9" 3 3 .SH NAME 4 4 filed \- serve files over HTTP 5 5 .SH SYNOPSIS 6 6 .ll +10 7 7 .B filed 8 8 .RB [{ \-h | \-\-help }] 9 9 .RB [{ \-d | \-\-daemon }]
Modified filed.c from [59e6b51663] to [d44c0f8297].
16 16 #include <fcntl.h> 17 17 #include <stdio.h> 18 18 #include <errno.h> 19 19 #include <time.h> 20 20 #include <pwd.h> 21 21 22 22 /* Compile time constants */ 23 -#define FILED_VERSION "1.8" 23 +#define FILED_VERSION "1.9" 24 24 #define FILED_SENDFILE_MAX 16777215 25 25 #define FILED_MAX_FAILURE_COUNT 30 26 26 #define FILED_DEFAULT_TYPE "application/octet-stream" 27 27 #define FILED_PATH_BUFFER_SIZE 1010 28 28 29 29 /* Default values */ 30 30 #define PORT 80