Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f55e303e9fea0d69e11fb5aa1f0462b66baf30e0 |
User & Date: | rkeene on 2020-04-01 17:41:40 |
Other Links: | manifest | tags |
Context
2020-04-01
| ||
18:37 | Emit links to downloads check-in: cb5ff1a1e0 user: rkeene tags: trunk | |
17:41 | Post-release version increment check-in: f55e303e9f user: rkeene tags: trunk | |
17:41 | Filed 1.22 check-in: 77bfc6eaca user: rkeene tags: trunk, 1.22 | |
Changes
Modified filed.1 from [3154c0e243] to [4b379c04ba].
1 1 .PU 2 -.TH FILED 1 "22 Sep 2016" "filed 1.22" 2 +.TH FILED 1 "22 Sep 2016" "filed 1.23" 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 [1c48569c61] to [28001c198c].
40 40 #include <fcntl.h> 41 41 #include <stdio.h> 42 42 #include <errno.h> 43 43 #include <time.h> 44 44 #include <pwd.h> 45 45 46 46 /* Compile time constants */ 47 -#define FILED_VERSION "1.22" 47 +#define FILED_VERSION "1.23" 48 48 #define FILED_SENDFILE_MAX 16777215 49 49 #define FILED_MAX_FAILURE_COUNT 30 50 50 #define FILED_DEFAULT_TYPE "application/octet-stream" 51 51 #define FILED_PATH_BUFFER_SIZE 1010 52 52 53 53 /* Default values */ 54 54 #define PORT 80