18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <pwd.h>
/* Compile time constants */
#define FILED_SENDFILE_MAX 16777215
#define MAX_FAILURE_COUNT 30
/* Default values */
#define PORT 8080
#define THREAD_COUNT 5
#define BIND_ADDR "::"
#define CACHE_SIZE 8193
/* Arguments for worker threads */
struct filed_worker_thread_args {
int fd;
|
|
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <pwd.h>
/* Compile time constants */
#define FILED_SENDFILE_MAX 16777215
#define MAX_FAILURE_COUNT 30
/* Default values */
#define PORT 80
#define THREAD_COUNT 5
#define BIND_ADDR "::"
#define CACHE_SIZE 8193
/* Arguments for worker threads */
struct filed_worker_thread_args {
int fd;
|