Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
525e4358e2a526b5d6d44fa0c5daf43e |
User & Date: | rkeene on 2014-02-08 06:59:07 |
Other Links: | manifest | tags |
Context
2014-02-08
| ||
08:46 | Log formatting changes check-in: 5decd7a269 user: rkeene tags: trunk | |
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 | |
Changes
Modified filed.1 from [0355e29cbe] to [82581c75bb].
1 | .PU | | | 1 2 3 4 5 6 7 8 9 | .PU .TH FILED 1 "08 Feb 14" "filed 1.1" .SH NAME filed \- serve files over HTTP .SH SYNOPSIS .ll +10 .B filed .RB [{ \-h | \-\-help }] .RB [{ \-d | \-\-daemon }] |
︙ | ︙ |
Modified filed.c from [05ed1b448a] to [a9d9efdd38].
︙ | ︙ | |||
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.1" #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 |
︙ | ︙ |