2003-11-14 15:20:34 +08:00
|
|
|
#ifndef _NGX_OS_H_INCLUDED_
|
2003-11-14 00:16:33 +08:00
|
|
|
#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 {
|
2004-03-17 05:26:01 +08:00
|
|
|
ssize_t (*recv)(ngx_connection_t *c, u_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);
|
2004-03-17 05:26:01 +08:00
|
|
|
ssize_t (*send)(ngx_connection_t *c, u_char *buf, size_t size);
|
2004-06-22 03:22:53 +08:00
|
|
|
ngx_chain_t *(*send_chain)(ngx_connection_t *c, ngx_chain_t *in,
|
|
|
|
off_t limit);
|
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);
|
|
|
|
|
2004-03-17 05:26:01 +08:00
|
|
|
ssize_t ngx_wsarecv(ngx_connection_t *c, u_char *buf, size_t size);
|
|
|
|
ssize_t ngx_overlapped_wsarecv(ngx_connection_t *c, u_char *buf, size_t size);
|
2003-11-17 05:49:42 +08:00
|
|
|
ssize_t ngx_wsarecv_chain(ngx_connection_t *c, ngx_chain_t *chain);
|
2004-06-22 03:22:53 +08:00
|
|
|
ngx_chain_t *ngx_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in,
|
|
|
|
off_t limit);
|
|
|
|
ngx_chain_t *ngx_overlapped_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in,
|
|
|
|
off_t limit);
|
2003-11-14 15:20:34 +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;
|
2004-06-30 23:30:41 +08:00
|
|
|
extern int ngx_ncpu;
|
2003-05-20 23:37:55 +08:00
|
|
|
extern int ngx_max_sockets;
|
2003-05-21 21:28:21 +08:00
|
|
|
extern int ngx_inherited_nonblocking;
|
2003-11-14 00:16:33 +08:00
|
|
|
extern int ngx_win32_version;
|
2003-05-20 23:37:55 +08:00
|
|
|
|
|
|
|
|
2003-11-14 00:16:33 +08:00
|
|
|
|
|
|
|
#endif /* _NGX_OS_H_INCLUDED_ */
|
|
|
|
|