Overview
Comment: | Filed 1.16 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.16 |
Files: | files | file ages | folders |
SHA1: | 395483fa73672cda8dbba709525203987731212e |
User & Date: | rkeene on 2016-02-22 22:35:24 |
Other Links: | manifest | tags |
Context
2016-02-22
| ||
22:35 | Post-release version increment check-in: 38ad23a62e user: rkeene tags: trunk | |
22:35 | Filed 1.16 check-in: 395483fa73 user: rkeene tags: trunk, 1.16 | |
22:34 | Fixed issue with initializing timeout structures when using chroot() check-in: 64aa5e7fb5 user: rkeene tags: trunk | |
Changes
Modified filed.c from [df8bd5d3b2] to [f4a6909b38].
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
*/
#ifndef FILED_DONT_TIMEOUT
#include <stdatomic.h>
#include <stdbool.h>
#endif
/* Compile time constants */
#define FILED_VERSION "1.15"
#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
|
| |
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
*/
#ifndef FILED_DONT_TIMEOUT
#include <stdatomic.h>
#include <stdbool.h>
#endif
/* Compile time constants */
#define FILED_VERSION "1.16"
#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
|