Check-in [f3418e68d2]
Overview
Comment:Post-release version increment
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:f3418e68d237cd269b94266160fe5df3188fe13a
User & Date: rkeene on 2016-09-22 19:30:50
Other Links: manifest | tags
Context
2018-05-03
20:08
Added support for not redirecting to index.html check-in: 879cdc86ce user: rkeene tags: trunk
2016-09-22
19:30
Post-release version increment check-in: f3418e68d2 user: rkeene tags: trunk
19:30
Filed 1.20 check-in: 1c7faf07aa user: rkeene tags: trunk, 1.20
Changes

Modified filed.1 from [a80f7170ed] to [193b38d17e].

     1      1   .PU
     2         -.TH FILED 1 "22 Sep 2016" "filed 1.20"
            2  +.TH FILED 1 "22 Sep 2016" "filed 1.21"
     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 [f1e3a815c8] to [8f507e1315].

    65     65    */
    66     66   #ifndef FILED_DONT_TIMEOUT
    67     67   #include <stdatomic.h>
    68     68   #include <stdbool.h>
    69     69   #endif
    70     70   
    71     71   /* Compile time constants */
    72         -#define FILED_VERSION "1.20"
           72  +#define FILED_VERSION "1.21"
    73     73   #define FILED_SENDFILE_MAX 16777215
    74     74   #define FILED_MAX_FAILURE_COUNT 30
    75     75   #define FILED_DEFAULT_TYPE "application/octet-stream"
    76     76   #define FILED_PATH_BUFFER_SIZE 1010
    77     77   
    78     78   /* Default values */
    79     79   #define PORT 80