summaryrefslogtreecommitdiff
path: root/src/http/ngx_http_spdy.c
diff options
context:
space:
mode:
authornginx <nginx@nginx.org>2013-04-24 14:11:57 +0000
committerJon Kolb <jon@b0g.us>2013-04-24 14:11:57 +0000
commit740eba7e73bf85fd7e93e2d908f64f649d1819ab (patch)
tree0c694118582bedb377359a58e879df444c583c89 /src/http/ngx_http_spdy.c
parent73a0d767d316125bc5b39609918d42521e14afdb (diff)
downloadnginx-740eba7e73bf85fd7e93e2d908f64f649d1819ab.tar.gz
Changes with nginx 1.4.0 24 Apr 2013v1.4.0
*) Bugfix: nginx could not be built with the ngx_http_perl_module if the --with-openssl option was used; the bug had appeared in 1.3.16. *) Bugfix: in a request body handling in the ngx_http_perl_module; the bug had appeared in 1.3.9.
Diffstat (limited to 'src/http/ngx_http_spdy.c')
-rw-r--r--src/http/ngx_http_spdy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c
index 0e6fe9281..3febc23e9 100644
--- a/src/http/ngx_http_spdy.c
+++ b/src/http/ngx_http_spdy.c
@@ -1830,6 +1830,7 @@ ngx_http_spdy_create_stream(ngx_http_spdy_connection_t *sc, ngx_uint_t id,
fc->log = log;
fc->buffered = 0;
fc->sndlowat = 1;
+ fc->tcp_nodelay = NGX_TCP_NODELAY_DISABLED;
r = ngx_http_create_request(fc);
if (r == NULL) {