2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#ifndef _NGX_POSIX_CONFIG_H_INCLUDED_
|
|
|
|
#define _NGX_POSIX_CONFIG_H_INCLUDED_
|
|
|
|
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if 0
|
|
|
|
#define _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE_EXTENDED 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
#if 0
|
|
|
|
#define _REENTRANT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_UNISTD_H)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <unistd.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_INTTYPES_H)
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h> /* offsetof() */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_SYS_FILIO_H)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/filio.h> /* FIONBIO */
|
2004-10-21 23:34:38 +08:00
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h> /* FIONBIO */
|
|
|
|
|
|
|
|
#include <sys/uio.h>
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/resource.h>
|
2004-07-02 13:47:00 +08:00
|
|
|
#include <sched.h>
|
2004-06-16 01:47:16 +08:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <netinet/tcp.h> /* TCP_NODELAY */
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
#include <sys/un.h>
|
2004-06-16 01:47:16 +08:00
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_LIMITS_H)
|
|
|
|
#include <limits.h> /* IOV_MAX */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IOV_MAX
|
|
|
|
#define IOV_MAX 16
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <ngx_auto_config.h>
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_POLL)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_KQUEUE)
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <sys/event.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_DEVPOLL)
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/devpoll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if (__FreeBSD__) && (__FreeBSD_version < 400017)
|
|
|
|
|
|
|
|
#include <sys/param.h> /* ALIGN() */
|
|
|
|
|
|
|
|
/* FreeBSD 3.x has no CMSG_SPACE() at all and has the broken CMSG_DATA() */
|
|
|
|
|
|
|
|
#undef CMSG_SPACE
|
|
|
|
#define CMSG_SPACE(l) (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l))
|
|
|
|
|
|
|
|
#undef CMSG_DATA
|
|
|
|
#define CMSG_DATA(cmsg) ((u_char *)(cmsg) + ALIGN(sizeof(struct cmsghdr)))
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#define NGX_POSIX_IO 1
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_POSIX_CONFIG_H_INCLUDED_ */
|