comparison src/imap/ngx_imap_handler.c @ 415:3c56e834be46

nginx-0.0.10-2004-09-05-23:54:02 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 05 Sep 2004 19:54:02 +0000
parents src/imap/ngx_imap_proxy_handler.c@de9d4726e28a
children 0526206251f6
comparison
equal deleted inserted replaced
414:388a842cbbe1 415:3c56e834be46
1
2 #include <ngx_config.h>
3 #include <ngx_core.h>
4 #include <ngx_event.h>
5
6
7 void ngx_imap_init_connection(ngx_connection_t *c)
8 {
9 ngx_log_debug0(NGX_LOG_DEBUG_IMAP, c->log, 0,
10 "imap init connection");
11
12 if (ngx_close_socket(c->fd) == -1) {
13
14 /* we use ngx_cycle->log because c->log was in c->pool */
15
16 ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, ngx_socket_errno,
17 ngx_close_socket_n " failed");
18 }
19 }