Overview
Comment: | Filed 1.10 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.10 |
Files: | files | file ages | folders |
SHA1: | dd8a7297f374c879b280a4b0a6a559b79646fbaa |
User & Date: | rkeene on 2014-10-13 08:12:34 |
Other Links: | manifest | tags |
Context
2014-10-13
| ||
08:12 | Post-release version increment check-in: 7099ed9113 user: rkeene tags: trunk | |
08:12 | Filed 1.10 check-in: dd8a7297f3 user: rkeene tags: trunk, 1.10 | |
08:04 | Updated to support HTTP Connection Keep-Alive check-in: b4fa45b6aa user: rkeene tags: trunk | |
Changes
Modified filed.c from [d1e3cfdb7f] to [43b2c17e97].
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.9"
#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
|
| |
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.10"
#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
|