summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_request.c (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2017-03-24Added support for trailers in HTTP responses.Piotr Sikora1-0/+8
2017-05-29Fixed background requests with asynchronous operations.Roman Arutyunyan1-5/+3
2017-05-29SSL: set TCP_NODELAY on SSL connections before handshake.Maxim Dounin1-8/+17
2017-05-26Introduced ngx_tcp_nodelay().Ruslan Ermilov1-24/+3
2017-05-25Background subrequests for cache updates.Roman Arutyunyan1-3/+24
2017-04-25Don't pretend we support HTTP major versions >1 as HTTP/1.1.Ruslan Ermilov1-1/+11
2017-04-03Fixed type.hucongcong1-2/+2
2017-04-02Moved handling of wev->delayed to the connection event handler.Maxim Dounin1-21/+14
2017-03-24Fixed CPU hog while freeing hc->busy after e662cbf1b932 (1.11.11).Maxim Dounin1-0/+1
2017-03-07Converted hc->busy/hc->free to use chain links.Maxim Dounin1-36/+51
2017-02-02SSL: fixed ssl_buffer_size on SNI virtual hosts (ticket #1192).Maxim Dounin1-0/+2
2016-06-07Fixed an error log message.Valentin Bartenev1-1/+1
2016-05-20HTTP/2: the "421 Misdirected Request" response (closes #848).Valentin Bartenev1-1/+1
2016-05-16Dav: return 501 on PUT with ranges (ticket #948).Maxim Dounin1-0/+4
2016-05-13Improved EPOLLRDHUP handling.Valentin Bartenev1-1/+5
2016-03-31Fixed logging.Sergey Kandaurov1-6/+6
2016-02-24HTTP/2: implemented per request timeouts (closes #626).Valentin Bartenev1-12/+0
2016-02-24Fixed buffer over-read while logging invalid request headers.Valentin Bartenev1-4/+3
2015-12-08SSL: fixed possible segfault on renegotiation (ticket #845).Sergey Kandaurov1-0/+4
2015-11-06Style: unified request method checks.Ruslan Ermilov1-1/+1
2015-11-05SSL: only select HTTP/2 using NPN if "http2" is enabled.Valentin Bartenev1-10/+16
2015-09-11The HTTP/2 implementation (RFC 7240, 7241).Valentin Bartenev1-20/+19
2015-08-23Limit recursive subrequests instead of simultaneous.Valentin Bartenev1-1/+0
2015-06-16Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read.Roman Arutyunyan1-2/+2
2015-04-25Core: the ngx_set_connection_log() macro.Vladimir Homutov1-3/+3
2015-04-23Removed the obsolete rtsig module.Ruslan Ermilov1-1/+1
2015-04-22Removed the obsolete aio module.Ruslan Ermilov1-1/+1
2015-03-23Request body: unbuffered reading.Maxim Dounin1-0/+5
2015-03-02SSL: reset ready flag if recv(MSG_PEEK) found no bytes in socket.Roman Arutyunyan1-0/+1
2014-12-02Upstream: improved subrequest logging.Maxim Dounin1-6/+2
2014-10-08Fixed possible buffer overrun in "too long header line" logging.Maxim Dounin1-3/+2
2014-08-27SPDY: avoid setting timeout on stream events in ngx_http_writer().Valentin Bartenev1-0/+6
2014-07-18Reset of r->uri.len on URI parsing errors.Maxim Dounin1-0/+2
2014-03-17Added server-side support for PROXY protocol v1 (ticket #355).Roman Arutyunyan1-3/+61
2014-02-03Use ngx_socket_errno where appropriate.Piotr Sikora1-1/+1
2014-01-31Fixed false compiler warning.Vladimir Homutov1-0/+4
2014-01-30Fixed a compile warning introduced by 01e2a5bcdd8f.Ruslan Ermilov1-3/+4
2014-01-28SSL: support ALPN (IETF's successor to NPN).Piotr Sikora1-2/+14
2014-01-28Fixed TCP_DEFER_ACCEPT handling (ticket #353).Maxim Dounin1-23/+0
2013-09-16Use EPOLLRDHUP in ngx_http_test_reading() (ticket #320).Valentin Bartenev1-0/+27
2013-09-04Request cleanup code unified, no functional changes.Maxim Dounin1-1/+6
2013-09-02Assume the HTTP/1.0 version by default.Valentin Bartenev1-0/+1
2013-06-14Fixed ngx_http_test_reading() to finalize request properly.Maxim Dounin1-1/+1
2013-05-13Fixed lingering_time check.Maxim Dounin1-2/+2
2013-05-11Fixed build with --with-mail_ssl_module.Maxim Dounin1-4/+4
2013-03-20Preliminary experimental support for SPDY draft 2.Valentin Bartenev1-12/+60
2013-03-20URI processing code moved to a separate function.Valentin Bartenev1-120/+125
2013-03-15Allow to reuse connections that wait their first request.Valentin Bartenev1-0/+19
2013-03-12Fixed logging in ngx_http_wait_request_handler().Maxim Dounin1-1/+1
2013-03-07Refactored ngx_http_init_request().Valentin Bartenev1-33/+43