Overview
Comment: | Filed 1.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.0 |
Files: | files | file ages | folders |
SHA1: | 235573fe1c3c40baed8efe2883be66d675ea6630 |
User & Date: | rkeene on 2014-02-08 06:57:53 |
Other Links: | manifest | tags |
Context
2014-02-08
| ||
06:59 | Post-release version increment check-in: 525e4358e2 user: rkeene tags: trunk | |
06:57 | Filed 1.0 check-in: 235573fe1c user: rkeene tags: trunk, 1.0 | |
06:55 | Updated to correctly display IPv4 address if bound to IPv4 addresses check-in: 2a36924161 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [0f77e9a30b] to [0355e29cbe].
1 2 3 4 5 6 7 8 9 |
.PU .TH FILED 1 "06 Feb 14" "filed 0.9" .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 "08 Feb 14" "filed 1.0" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
Modified filed.c from [1f0badde9e] to [05ed1b448a].
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 "0.9"
#define FILED_SENDFILE_MAX 16777215
#define FILED_MAX_FAILURE_COUNT 30
#define FILED_DEFAULT_TYPE "application/octet-stream"
/* Default values */
#define PORT 80
#define THREAD_COUNT 5
|
| |
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.0"
#define FILED_SENDFILE_MAX 16777215
#define FILED_MAX_FAILURE_COUNT 30
#define FILED_DEFAULT_TYPE "application/octet-stream"
/* Default values */
#define PORT 80
#define THREAD_COUNT 5
|