Overview
Comment: | Filed 1.22 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.22 |
Files: | files | file ages | folders |
SHA1: | 77bfc6eacac5038c7402117739d6c316524222e6 |
User & Date: | rkeene on 2020-04-01 17:41:10 |
Other Links: | manifest | tags |
Context
2020-04-01
| ||
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 | |
17:40 | Updated to support uploading the binaries to fossil check-in: fa63935206 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [193b38d17e] to [3154c0e243].
1 2 3 4 5 6 7 8 9 |
.PU
.TH FILED 1 "22 Sep 2016" "filed 1.21"
.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.22"
.SH NAME
filed \- serve files over HTTP
.SH SYNOPSIS
.ll +10
.B filed
.RB [{ \-h | \-\-help }]
.RB [{ \-d | \-\-daemon }]
|
Modified filed.c from [eba3a486d8] to [1c48569c61].
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.21"
#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.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
|