aboutsummaryrefslogtreecommitdiffstats
path: root/nginx/src/os/unix/ngx_channel.h
diff options
context:
space:
mode:
authorFlorin Coras <florin.coras@gmail.com>2020-04-29 17:00:20 +0000
committerGerrit Code Review <gerrit@fd.io>2020-04-29 17:00:20 +0000
commit1e75471aed27194fb8ee0b2c07c64fb8a8f55279 (patch)
treefdb69f1cbe2f3149254881c7bed298dcb283f832 /nginx/src/os/unix/ngx_channel.h
parent057728c66960a84e3a6a607f0ddf5deb0095c7be (diff)
parent6a5411729539fe21117f406699a69974b320eb7e (diff)
Merge "remove nginx build directory"
Diffstat (limited to 'nginx/src/os/unix/ngx_channel.h')
-rw-r--r--nginx/src/os/unix/ngx_channel.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/nginx/src/os/unix/ngx_channel.h b/nginx/src/os/unix/ngx_channel.h
deleted file mode 100644
index 362cc64..0000000
--- a/nginx/src/os/unix/ngx_channel.h
+++ /dev/null
@@ -1,34 +0,0 @@
-
-/*
- * Copyright (C) Igor Sysoev
- * Copyright (C) Nginx, Inc.
- */
-
-
-#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_ */