diff src/http/ngx_http.c @ 253:b6793bc5034b

nginx-0.0.2-2004-02-09-10:46:43 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 09 Feb 2004 07:46:43 +0000
parents 674f85a4d00f
children 70e1c7d2b83d
line wrap: on
line diff
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -483,6 +483,9 @@ static char *ngx_http_block(ngx_conf_t *
                           ngx_pcalloc(cf->pool, sizeof(struct sockaddr_in)),
                           NGX_CONF_ERROR);
 
+#if (HAVE_SIN_LEN)
+            addr_in->sin_len = sizeof(struct sockaddr_in);
+#endif
             addr_in->sin_family = AF_INET;
             addr_in->sin_addr.s_addr = in_addr[a].addr;
             addr_in->sin_port = htons((u_short) in_port[p].port);