comparison src/http/modules/ngx_http_fastcgi_module.c @ 6230:2a621245f4cf

Win32: MSVC 2015 compatibility. Resolved warnings about declarations that hide previous local declarations. Warnings about WSASocketA() being deprecated resolved by explicit use of WSASocketW() instead of WSASocket(). When compiling without IPv6 support, WinSock deprecated warnings are disabled to allow use of gethostbyname().
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 17 Aug 2015 18:09:17 +0300
parents 8ad78808a612
children a93345ee8f52
comparison
equal deleted inserted replaced
6229:2c045e5b8291 6230:2a621245f4cf
1768 /* f->type == NGX_HTTP_FASTCGI_STDOUT */ 1768 /* f->type == NGX_HTTP_FASTCGI_STDOUT */
1769 1769
1770 #if (NGX_HTTP_CACHE) 1770 #if (NGX_HTTP_CACHE)
1771 1771
1772 if (f->large_stderr && r->cache) { 1772 if (f->large_stderr && r->cache) {
1773 u_char *start;
1774 ssize_t len; 1773 ssize_t len;
1775 ngx_http_fastcgi_header_t *fh; 1774 ngx_http_fastcgi_header_t *fh;
1776 1775
1777 start = u->buffer.start + r->cache->header_start; 1776 start = u->buffer.start + r->cache->header_start;
1778 1777