nginx/src/os/win32/ngx_os.h

50 lines
1009 B
C
Raw Normal View History

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-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-11-14 00:16:33 +08:00
extern int ngx_win32_version;
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
#endif /* _NGX_OS_H_INCLUDED_ */