nginx-0.1.44-RELEASE import

    *) Feature: the IMAP/POP3 proxy supports SSL.

    *) Feature: the "proxy_timeout" directive of the ngx_imap_proxy_module.

    *) Feature: the "userid_mark" directive.

    *) Feature: the $remote_user variable value is determined independently
       of authorization use.
diff --git a/src/core/nginx.c b/src/core/nginx.c
index a59e4d6..78e3caa 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -236,6 +236,10 @@
 
 #else
 
+    if (ngx_init_signals(cycle->log) == NGX_ERROR) {
+        return 1;
+    }
+
     if (!ngx_inherited && ccf->daemon) {
         if (ngx_daemon(cycle->log) == NGX_ERROR) {
             return 1;
diff --git a/src/core/nginx.h b/src/core/nginx.h
index d58f608..a24f883 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,7 +8,7 @@
 #define _NGINX_H_INCLUDED_
 
 
-#define NGINX_VER          "nginx/0.1.43"
+#define NGINX_VER          "nginx/0.1.44"
 
 #define NGINX_VAR          "NGINX"
 #define NGX_NEWPID_EXT     ".newbin"
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h
index 6dd1919..3c280bd 100644
--- a/src/core/ngx_connection.h
+++ b/src/core/ngx_connection.h
@@ -92,6 +92,7 @@
     ngx_socket_t        fd;
 
     ngx_recv_pt         recv;
+    ngx_send_pt         send;
     ngx_send_chain_pt   send_chain;
 
     ngx_listening_t    *listening;