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 2 3 4 5 6 7 8 9 |
.PU
.TH FILED 1 "22 Sep 2016" "filed 1.22"
.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.23"
.SH NAME
filed \- serve files over HTTP
.SH SYNOPSIS
.ll +10
.B filed
.RB [{ \-h | \-\-help }]
.RB [{ \-d | \-\-daemon }]
|
Modified filed.c from [1c48569c61] to [28001c198c].
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <pwd.h>
/* Compile time constants */
#define FILED_VERSION "1.22"
#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
|
| |
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <pwd.h>
/* Compile time constants */
#define FILED_VERSION "1.23"
#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
|