Overview
Comment: | Updated version |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | c261ffbca57bf773177cced7062afbb31143086f |
User & Date: | rkeene on 2014-10-13 15:00:25 |
Original Comment: | Filed 1.12 |
Other Links: | manifest | tags |
Context
2014-10-13
| ||
15:02 | Filed 1.12 check-in: 35e673a15d user: rkeene tags: trunk, 1.12 | |
15:00 | Updated version check-in: c261ffbca5 user: rkeene tags: trunk | |
14:59 | Fixed file descriptor leaking introduced in [b4fa45b6aa] and made connection re-use more clean check-in: 679bcc1373 user: rkeene tags: trunk | |
Changes
Modified filed.c from [390765784d] to [6146eb901e].
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.11"
#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.12"
#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
|