2003-11-14 00:16:33 +08:00
|
|
|
#ifndef _NGX_OS_H_INCLUDED_
|
|
|
|
#define _NGX_OS_H_INCLUDED_
|
2003-05-20 23:37:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
2003-05-21 21:28:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define NGX_IO_SENDFILE 1
|
|
|
|
#define NGX_IO_ZEROCOPY 2
|
|
|
|
|
|
|
|
#if (HAVE_SENDFILE)
|
|
|
|
#define NGX_HAVE_SENDFILE NGX_IO_SENDFILE
|
|
|
|
#else
|
|
|
|
#define NGX_HAVE_SENDFILE 0
|
2003-05-20 23:37:55 +08:00
|
|
|
#endif
|
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
#if (HAVE_ZEROCOPY)
|
|
|
|
#define NGX_HAVE_ZEROCOPY NGX_IO_ZEROCOPY
|
|
|
|
#else
|
|
|
|
#define NGX_HAVE_ZEROCOPY 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ssize_t (*recv)(ngx_connection_t *c, char *buf, size_t size);
|
2003-06-12 13:54:39 +08:00
|
|
|
ssize_t (*recv_chain)(ngx_connection_t *c, ngx_chain_t *in);
|
|
|
|
ssize_t (*send)(ngx_connection_t *c, char *buf, size_t size);
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_chain_t *(*send_chain)(ngx_connection_t *c, ngx_chain_t *in);
|
2003-05-21 21:28:21 +08:00
|
|
|
int flags;
|
2003-05-20 23:37:55 +08:00
|
|
|
} ngx_os_io_t;
|
|
|
|
|
|
|
|
|
|
|
|
int ngx_os_init(ngx_log_t *log);
|
2003-07-11 00:26:57 +08:00
|
|
|
int ngx_daemon(ngx_log_t *log);
|
2003-11-14 00:16:33 +08:00
|
|
|
int ngx_posix_init(ngx_log_t *log);
|
|
|
|
|
|
|
|
ssize_t ngx_unix_recv(ngx_connection_t *c, char *buf, size_t size);
|
|
|
|
ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry);
|
|
|
|
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in);
|
2003-07-11 00:26:57 +08:00
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
extern ngx_os_io_t ngx_os_io;
|
|
|
|
extern int ngx_max_sockets;
|
2003-05-21 21:28:21 +08:00
|
|
|
extern int ngx_inherited_nonblocking;
|
2003-05-20 23:37:55 +08:00
|
|
|
|
|
|
|
|
2003-07-04 00:30:22 +08:00
|
|
|
extern int restart;
|
|
|
|
extern int rotate;
|
|
|
|
|
|
|
|
|
2003-11-14 00:16:33 +08:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <ngx_freebsd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_OS_H_INCLUDED_ */
|