Overview
Comment: | Post release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 3a2967949a9adee92276a029d503699fa5ff640d |
User & Date: | rkeene on 2014-02-12 17:56:50 |
Other Links: | manifest | tags |
Context
2014-02-12
| ||
19:19 | Updated to terminate malformed requests without newlines check-in: b16389c222 user: rkeene tags: trunk | |
17:56 | Post release version increment check-in: 3a2967949a user: rkeene tags: trunk | |
17:56 | Filed 1.6 check-in: f7cedf8636 user: rkeene tags: trunk, 1.6 | |
Changes
Modified filed.1 from [93dadcba78] to [5b3db65898].
1 2 3 4 5 6 7 8 9 |
.PU
.TH FILED 1 "12 Feb 14" "filed 1.6"
.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 "12 Feb 14" "filed 1.7"
.SH NAME
filed \- serve files over HTTP
.SH SYNOPSIS
.ll +10
.B filed
.RB [{ \-h | \-\-help }]
.RB [{ \-d | \-\-daemon }]
|
Modified filed.c from [a26989d41c] to [16407cc723].
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <pwd.h>
/* Compile time constants */
#define FILED_VERSION "1.6"
#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
|
| |
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <pwd.h>
/* Compile time constants */
#define FILED_VERSION "1.7"
#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
|