Overview
| Comment: | Filed 1.2 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | 1.2 |
| Files: | files | file ages | folders |
| SHA1: |
b6fe901824c571714e287a350f5f85c1 |
| User & Date: | rkeene on 2014-02-11 05:14:36 |
| Other Links: | manifest | tags |
Context
|
2014-02-11
| ||
| 05:15 | Post release version increment check-in: 6f539a8f16 user: rkeene tags: trunk | |
| 05:14 | Filed 1.2 check-in: b6fe901824 user: rkeene tags: trunk, 1.2 | |
| 05:01 | Updated to reduce use of malloc/strdup -- current run-time use is only for logging check-in: 614c3eb427 user: rkeene tags: trunk | |
Changes
Modified filed.1 from [82581c75bb] to [bb6bab30b7].
1 | .PU | | | 1 2 3 4 5 6 7 8 9 |
.PU
.TH FILED 1 "10 Feb 14" "filed 1.2"
.SH NAME
filed \- serve files over HTTP
.SH SYNOPSIS
.ll +10
.B filed
.RB [{ \-h | \-\-help }]
.RB [{ \-d | \-\-daemon }]
|
| ︙ | ︙ |
Modified filed.c from [491e53c99b] to [6922ec093c].
| ︙ | ︙ | |||
16 17 18 19 20 21 22 | #include <fcntl.h> #include <stdio.h> #include <errno.h> #include <time.h> #include <pwd.h> /* Compile time constants */ | | | 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.2" #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 |
| ︙ | ︙ |