comparison src/core/ngx_connection.h @ 417:0526206251f6

nginx-0.0.10-2004-09-07-19:29:22 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Sep 2004 15:29:22 +0000
parents 4e21d1291a14
children 47709bff4468
comparison
equal deleted inserted replaced
416:b9bd635011de 417:0526206251f6
127 #ifndef ngx_ssl_set_nosendshut 127 #ifndef ngx_ssl_set_nosendshut
128 #define ngx_ssl_set_nosendshut(ssl) 128 #define ngx_ssl_set_nosendshut(ssl)
129 #endif 129 #endif
130 130
131 131
132 ngx_listening_t *ngx_listening_inet_stream_socket(ngx_conf_t *cf,
133 in_addr_t addr,
134 in_port_t port);
132 ngx_int_t ngx_set_inherited_sockets(ngx_cycle_t *cycle); 135 ngx_int_t ngx_set_inherited_sockets(ngx_cycle_t *cycle);
133 ngx_int_t ngx_open_listening_sockets(ngx_cycle_t *cycle); 136 ngx_int_t ngx_open_listening_sockets(ngx_cycle_t *cycle);
134 void ngx_close_listening_sockets(ngx_cycle_t *cycle); 137 void ngx_close_listening_sockets(ngx_cycle_t *cycle);
138 void ngx_close_connection(ngx_connection_t *c);
135 ngx_int_t ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text); 139 ngx_int_t ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text);
136 140
137 141
138 extern ngx_os_io_t ngx_io; 142 extern ngx_os_io_t ngx_io;
139 143