Check-in [77bfc6eaca]
Overview
Comment:Filed 1.22
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 1.22
Files: files | file ages | folders
SHA1:77bfc6eacac5038c7402117739d6c316524222e6
User & Date: rkeene on 2020-04-01 17:41:10
Other Links: manifest | tags
Context
2020-04-01
17:41
Post-release version increment check-in: f55e303e9f user: rkeene tags: trunk
17:41
Filed 1.22 check-in: 77bfc6eaca user: rkeene tags: trunk, 1.22
17:40
Updated to support uploading the binaries to fossil check-in: fa63935206 user: rkeene tags: trunk
Changes

Modified filed.1 from [193b38d17e] to [3154c0e243].

     1      1   .PU
     2         -.TH FILED 1 "22 Sep 2016" "filed 1.21"
            2  +.TH FILED 1 "22 Sep 2016" "filed 1.22"
     3      3   .SH NAME
     4      4   filed \- serve files over HTTP
     5      5   .SH SYNOPSIS
     6      6   .ll +10
     7      7   .B filed
     8      8   .RB [{ \-h | \-\-help }]
     9      9   .RB [{ \-d | \-\-daemon }]

Modified filed.c from [eba3a486d8] to [1c48569c61].

    40     40   #include <fcntl.h>
    41     41   #include <stdio.h>
    42     42   #include <errno.h>
    43     43   #include <time.h>
    44     44   #include <pwd.h>
    45     45   
    46     46   /* Compile time constants */
    47         -#define FILED_VERSION "1.21"
           47  +#define FILED_VERSION "1.22"
    48     48   #define FILED_SENDFILE_MAX 16777215
    49     49   #define FILED_MAX_FAILURE_COUNT 30
    50     50   #define FILED_DEFAULT_TYPE "application/octet-stream"
    51     51   #define FILED_PATH_BUFFER_SIZE 1010
    52     52   
    53     53   /* Default values */
    54     54   #define PORT 80