Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 7ea9f63446fa3560ad6bb380066b1f717fc30b11 |
User & Date: | rkeene on 2014-10-13 15:03:49 |
Other Links: | manifest | tags |
Context
2014-12-29
| ||
04:39 | Updated to be more aggressive in encoding wiki characters in man pages check-in: 74424b0987 user: rkeene tags: trunk | |
2014-10-13
| ||
15:03 | Post-release version increment check-in: 7ea9f63446 user: rkeene tags: trunk | |
15:02 | Filed 1.12 check-in: 35e673a15d user: rkeene tags: trunk, 1.12 | |
Changes
Modified filed.1 from [cc49ddd664] to [f31382353f].
1 2 3 4 5 6 7 8 9 |
.PU
.TH FILED 1 "13 Oct 14" "filed 1.12"
.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 "13 Oct 14" "filed 1.13"
.SH NAME
filed \- serve files over HTTP
.SH SYNOPSIS
.ll +10
.B filed
.RB [{ \-h | \-\-help }]
.RB [{ \-d | \-\-daemon }]
|
Modified filed.c from [6146eb901e] to [974bab36c9].
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.12"
#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.13"
#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
|