diff options
| author | 2011-09-22 23:32:10 +0000 | |
|---|---|---|
| committer | 2011-09-22 23:32:10 +0000 | |
| commit | 40ffe171a7951d3019b3c8b488be87bfad405509 (patch) | |
| tree | 7634bff211814a539a15e4e34db747e4d7b46006 /usr.sbin/nginx/src/os/unix/ngx_channel.h | |
| parent | Always install all manuals on all architectures. (diff) | |
| download | wireguard-openbsd-40ffe171a7951d3019b3c8b488be87bfad405509.tar.xz wireguard-openbsd-40ffe171a7951d3019b3c8b488be87bfad405509.zip | |
import of nginx 1.0.6 with a bundled libpcre needed for pcre to work
properly.
this is not yet linked to the build but we would like to work on it
in tree to provide an apache replacement for base
Diffstat (limited to 'usr.sbin/nginx/src/os/unix/ngx_channel.h')
| -rw-r--r-- | usr.sbin/nginx/src/os/unix/ngx_channel.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/usr.sbin/nginx/src/os/unix/ngx_channel.h b/usr.sbin/nginx/src/os/unix/ngx_channel.h new file mode 100644 index 00000000000..365d4394b34 --- /dev/null +++ b/usr.sbin/nginx/src/os/unix/ngx_channel.h @@ -0,0 +1,33 @@ + +/* + * Copyright (C) Igor Sysoev + */ + + +#ifndef _NGX_CHANNEL_H_INCLUDED_ +#define _NGX_CHANNEL_H_INCLUDED_ + + +#include <ngx_config.h> +#include <ngx_core.h> +#include <ngx_event.h> + + +typedef struct { + ngx_uint_t command; + ngx_pid_t pid; + ngx_int_t slot; + ngx_fd_t fd; +} ngx_channel_t; + + +ngx_int_t ngx_write_channel(ngx_socket_t s, ngx_channel_t *ch, size_t size, + ngx_log_t *log); +ngx_int_t ngx_read_channel(ngx_socket_t s, ngx_channel_t *ch, size_t size, + ngx_log_t *log); +ngx_int_t ngx_add_channel_event(ngx_cycle_t *cycle, ngx_fd_t fd, + ngx_int_t event, ngx_event_handler_pt handler); +void ngx_close_channel(ngx_fd_t *fd, ngx_log_t *log); + + +#endif /* _NGX_CHANNEL_H_INCLUDED_ */ |
