Overview
Comment: | Filed 1.18 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.18 |
Files: | files | file ages | folders |
SHA1: | a78878e047f5b55f0851e21697974fe3b3e42e56 |
User & Date: | rkeene on 2016-08-17 16:22:41 |
Other Links: | manifest | tags |
Context
2016-08-17
| ||
16:23 | Post-release version increment check-in: 1233e63987 user: rkeene tags: trunk | |
16:22 | Filed 1.18 check-in: a78878e047 user: rkeene tags: trunk, 1.18 | |
16:21 | Added compile-time support for a fake chroot mode instead of using a real chroot (this may change into a runtime option one day) check-in: 5ea7bc0001 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [524a5a3b57] to [59bed0bc1d].
1 2 3 4 5 6 7 8 9 |
.PU .TH FILED 1 "22 Feb 2016" "filed 1.17" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
| |
1 2 3 4 5 6 7 8 9 |
.PU .TH FILED 1 "17 Aug 2016" "filed 1.18" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
Modified filed.c from [e20f1f0a83] to [69fa347d3a].
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
*/
#ifndef FILED_DONT_TIMEOUT
#include <stdatomic.h>
#include <stdbool.h>
#endif
/* Compile time constants */
#define FILED_VERSION "1.17"
#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
|
| |
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
*/
#ifndef FILED_DONT_TIMEOUT
#include <stdatomic.h>
#include <stdbool.h>
#endif
/* Compile time constants */
#define FILED_VERSION "1.18"
#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
|