Overview
Comment: | Filed 1.4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.4 |
Files: | files | file ages | folders |
SHA1: | 54ff5cc0ff642939eb75517567399f30c2fa0d40 |
User & Date: | rkeene on 2014-02-12 01:35:17 |
Other Links: | manifest | tags |
Context
2014-02-12
| ||
01:35 | Post release version increment check-in: a4b6e76732 user: rkeene tags: trunk | |
01:35 | Filed 1.4 check-in: 54ff5cc0ff user: rkeene tags: trunk, 1.4 | |
2014-02-11
| ||
16:55 | Added note about log files check-in: d6e6e6e9c7 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [85be589e38] to [5c45a91f1a].
1 2 3 4 5 6 7 8 9 |
.PU .TH FILED 1 "10 Feb 14" "filed 1.3" .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 "11 Feb 14" "filed 1.4" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
Modified filed.c from [c52c45f3be] to [bcf5995168].
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.3"
#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.4"
#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
|