blob: b90792c963716923dd10b463fd44231326c7231a [file] [log] [blame]
Igor Sysoevfa73aac2003-05-21 13:28:21 +00001#ifndef _NGX_LINUX_CONFIG_H_INCLUDED_
2#define _NGX_LINUX_CONFIG_H_INCLUDED_
3
4
Igor Sysoev9cf78302003-06-04 17:28:33 +00005#define _FILE_OFFSET_BITS 64
6#define _LARGEFILE_SOURCE
Igor Sysoev6a1cc902003-05-22 15:23:47 +00007
8
Igor Sysoev9cf78302003-06-04 17:28:33 +00009#define _XOPEN_SOURCE 500 /* pread, pwrite */
Igor Sysoevfa73aac2003-05-21 13:28:21 +000010#include <unistd.h>
Igor Sysoev9cf78302003-06-04 17:28:33 +000011#undef _XOPEN_SOURCE 500
12
Igor Sysoevfa73aac2003-05-21 13:28:21 +000013#include <stddef.h> /* offsetof */
14#include <stdlib.h>
15#include <stdio.h>
Igor Sysoevfa73aac2003-05-21 13:28:21 +000016#include <fcntl.h>
17#include <signal.h>
Igor Sysoevfa73aac2003-05-21 13:28:21 +000018#include <time.h>
Igor Sysoev6a1cc902003-05-22 15:23:47 +000019
Igor Sysoev9cf78302003-06-04 17:28:33 +000020#define __USE_BSD /* bzero */
Igor Sysoev6a1cc902003-05-22 15:23:47 +000021#include <string.h>
22#undef __USE_BSD
23
Igor Sysoevfa73aac2003-05-21 13:28:21 +000024#include <sys/types.h>
Igor Sysoev6a1cc902003-05-22 15:23:47 +000025#include <sys/time.h>
26#include <sys/select.h>
Igor Sysoevfa73aac2003-05-21 13:28:21 +000027#include <sys/uio.h>
Igor Sysoev6a1cc902003-05-22 15:23:47 +000028#include <sys/ioctl.h>
Igor Sysoevfa73aac2003-05-21 13:28:21 +000029#include <sys/resource.h>
Igor Sysoev9cf78302003-06-04 17:28:33 +000030#include <sys/sysctl.h>
Igor Sysoev6a1cc902003-05-22 15:23:47 +000031#include <sys/socket.h>
Igor Sysoevfa73aac2003-05-21 13:28:21 +000032#include <netinet/in.h>
33#include <arpa/inet.h>
Igor Sysoev13933252003-05-29 13:02:09 +000034#include <netdb.h>
Igor Sysoev6a1cc902003-05-22 15:23:47 +000035
36
Igor Sysoev9cf78302003-06-04 17:28:33 +000037typedef unsigned int u_int;
38typedef unsigned short u_short;
39typedef unsigned char u_char;
Igor Sysoevfa73aac2003-05-21 13:28:21 +000040
41
42#ifndef HAVE_SELECT
43#define HAVE_SELECT 1
44#endif
45
46
47#ifndef HAVE_POLL
48#define HAVE_POLL 1
49#endif
50#if (HAVE_POLL)
51#include <poll.h>
52#endif
53
54
55#if defined TCP_DEFER_ACCEPT && !defined HAVE_DEFERRED_ACCEPT
56#define HAVE_DEFERRED_ACCEPT 1
57#endif
58
59
60#ifndef HAVE_INHERITED_NONBLOCK
61#define HAVE_INHERITED_NONBLOCK 1
62#endif
63
64
Igor Sysoev9cf78302003-06-04 17:28:33 +000065#ifndef HAVE_FIONBIO
66#define HAVE_FIONBIO 1
67#endif
68
69
Igor Sysoevfa73aac2003-05-21 13:28:21 +000070#endif /* _NGX_LINUX_CONFIG_H_INCLUDED_ */