nginx/src/os/unix/ngx_os.h

72 lines
1.7 KiB
C
Raw Normal View History

/*
* Copyright (C) Igor Sysoev
*/
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
2004-07-16 00:35:51 +08:00
typedef ssize_t (*ngx_recv_pt)(ngx_connection_t *c, u_char *buf, size_t size);
typedef ssize_t (*ngx_recv_chain_pt)(ngx_connection_t *c, ngx_chain_t *in);
typedef ssize_t (*ngx_send_pt)(ngx_connection_t *c, u_char *buf, size_t size);
typedef ngx_chain_t *(*ngx_send_chain_pt)(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
2003-05-20 23:37:55 +08:00
typedef struct {
2004-07-16 00:35:51 +08:00
ngx_recv_pt recv;
ngx_recv_chain_pt recv_chain;
ngx_send_pt send;
ngx_send_chain_pt send_chain;
ngx_uint_t flags;
2003-05-20 23:37:55 +08:00
} ngx_os_io_t;
void ngx_debug_init(void);
2004-10-04 04:02:06 +08:00
ngx_int_t ngx_os_init(ngx_log_t *log);
void ngx_os_status(ngx_log_t *log);
ngx_int_t ngx_daemon(ngx_log_t *log);
ngx_int_t ngx_posix_init(ngx_log_t *log);
void ngx_posix_status(ngx_log_t *log);
ngx_int_t ngx_posix_post_conf_init(ngx_log_t *log);
2003-11-14 15:20:34 +08:00
2003-11-14 00:16:33 +08:00
2004-03-16 15:10:12 +08:00
ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
2003-11-14 00:16:33 +08:00
ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry);
ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
2004-06-21 23:59:32 +08:00
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
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;
2004-10-04 04:02:06 +08:00
extern ngx_int_t ngx_ncpu;
extern ngx_int_t ngx_max_sockets;
extern ngx_uint_t ngx_inherited_nonblocking;
extern ngx_uint_t ngx_tcp_nodelay_and_tcp_nopush;
2003-05-20 23:37:55 +08:00
2004-10-04 04:02:06 +08:00
#define ngx_stderr_fileno STDERR_FILENO
2003-05-20 23:37:55 +08:00
#if (NGX_FREEBSD)
2003-11-14 00:16:33 +08:00
#include <ngx_freebsd.h>
#elif (NGX_LINUX)
2003-11-26 23:42:18 +08:00
#include <ngx_linux.h>
#elif (NGX_SOLARIS)
2003-11-28 03:01:37 +08:00
#include <ngx_solaris.h>
#endif
2003-11-14 00:16:33 +08:00
#endif /* _NGX_OS_H_INCLUDED_ */