Overview
Comment: | Post-release version increment |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 5a4a432e880ef7072505dc884771ac10053e0823 |
User & Date: | rkeene on 2016-02-22 22:11:10 |
Other Links: | manifest | tags |
Context
2016-02-22
| ||
22:34 | Fixed issue with initializing timeout structures when using chroot() check-in: 64aa5e7fb5 user: rkeene tags: trunk | |
22:11 | Post-release version increment check-in: 5a4a432e88 user: rkeene tags: trunk | |
22:09 | Filed 1.14 check-in: 8d411f42b1 user: rkeene tags: trunk, 1.14 | |
Changes
Modified filed.c from [08ee2f445c] to [3cf4489884].
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.14"
#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.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
|