Overview
Comment: | Filed 1.20 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.20 |
Files: | files | file ages | folders |
SHA1: | 1c7faf07aa71b63652fc0ed415387a1f90bcbcf4 |
User & Date: | rkeene on 2016-09-22 19:30:17 |
Other Links: | manifest | tags |
Context
2016-09-22
| ||
19:30 | Post-release version increment check-in: f3418e68d2 user: rkeene tags: trunk | |
19:30 | Filed 1.20 check-in: 1c7faf07aa user: rkeene tags: trunk, 1.20 | |
19:28 | Added script to create precompiled binaries check-in: d3f770e3c3 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [322827fb73] to [a80f7170ed].
1 2 3 4 5 6 7 8 9 |
.PU .TH FILED 1 "17 Aug 2016" "filed 1.19" .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 "22 Sep 2016" "filed 1.20" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
Modified filed.c from [34dea9bf8d] to [f1e3a815c8].
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.19"
#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.20"
#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
|