diff src/imap/ngx_imap_proxy_handler.c @ 413:de9d4726e28a

nginx-0.0.10-2004-08-31-23:05:39 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 31 Aug 2004 19:05:39 +0000
parents
children
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/src/imap/ngx_imap_proxy_handler.c
@@ -0,0 +1,19 @@
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+#include <ngx_event.h>
+
+
+void ngx_imap_proxy_init_connection(ngx_connection_t *c)
+{
+    ngx_log_debug0(NGX_LOG_DEBUG_IMAP, c->log, 0,
+                   "imap proxy init connection");
+
+    if (ngx_close_socket(c->fd) == -1) {
+
+        /* we use ngx_cycle->log because c->log was in c->pool */
+
+        ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, ngx_socket_errno,
+                      ngx_close_socket_n " failed");
+    }
+}