summaryrefslogtreecommitdiffhomepage
path: root/src/http/v2 (follow)
AgeCommit message (Expand)AuthorFilesLines
2017-01-31Implemented the "server_tokens build" option.Ruslan Ermilov1-5/+40
2016-12-21Core: relative redirects (closes #1000).Ruslan Ermilov1-1/+3
2016-12-10HTTP/2: prevented creating temp files for requests without body.Valentin Bartenev1-2/+4
2016-11-28HTTP/2: fixed posted streams handling.Valentin Bartenev3-38/+42
2016-11-28HTTP/2: fixed saving preread buffer to temp file (ticket #1143).Valentin Bartenev1-0/+3
2016-11-02HTTP/2: flow control debugging.Sergey Kandaurov1-0/+4
2016-10-31HTTP/2: slightly improved debugging.Ruslan Ermilov1-3/+4
2016-10-31HTTP/2: limited maximum number of requests in connection.Valentin Bartenev3-8/+32
2016-10-20HTTP/2: graceful shutdown of active connections (closes #1106).Valentin Bartenev2-9/+39
2016-10-10Allowed '-' in method names.Maxim Dounin1-1/+1
2016-07-19HTTP/2: flushing of the SSL buffer in transition to the idle state.Valentin Bartenev1-2/+18
2016-07-19HTTP/2: refactored ngx_http_v2_send_output_queue().Valentin Bartenev1-10/+10
2016-07-19HTTP/2: fixed send timer handling.Valentin Bartenev1-1/+1
2016-07-19HTTP/2: avoid sending output queue if there's nothing to send.Valentin Bartenev1-0/+10
2016-07-19HTTP/2: always handle streams in error state.Valentin Bartenev1-6/+8
2016-07-19HTTP/2: prevented output of the HEADERS frame for canceled streams.Valentin Bartenev1-2/+6
2016-07-19HTTP/2: always send GOAWAY while worker is shutting down.Valentin Bartenev1-1/+1
2016-07-07HTTP/2: avoid left-shifting signed integer into the sign bit.Sergey Kandaurov1-1/+1
2016-06-22HTTP/2: style.Piotr Sikora1-6/+4
2016-06-20Introduced ngx_inet_get_port() and ngx_inet_set_port() functions.Roman Arutyunyan1-22/+1
2016-06-16HTTP/2: fixed the "http request count is zero" alert.Valentin Bartenev1-0/+1
2016-06-16HTTP/2: avoid adding Content-Length for requests without body.Valentin Bartenev1-2/+4
2016-06-16HTTP/2: prevented double termination of a stream.Valentin Bartenev1-0/+5
2016-06-16HTTP/2: fixed a segfault while processing unbuffered upload.Valentin Bartenev1-4/+0
2016-05-24HTTP/2: unbreak build on MSVC.Valentin Bartenev1-1/+1
2016-05-24HTTP/2: implemented preread buffer for request body (closes #959).Valentin Bartenev4-43/+146
2016-04-19HTTP/2: send the output queue after emitting WINDOW_UPDATE.Valentin Bartenev1-0/+10
2016-04-19HTTP/2: skip data frames in case of internal errors.Valentin Bartenev1-0/+2
2016-04-19HTTP/2: don't send WINDOW_UPDATE for an empty request body.Valentin Bartenev1-12/+13
2016-04-18HTTP/2: write logs when refusing streams with data.Maxim Dounin1-0/+4
2016-04-14HTTP/2: send WINDOW_UPDATE instead of RST_STREAM with NO_ERROR.Valentin Bartenev1-0/+22
2016-04-14HTTP/2: refuse streams with data until SETTINGS is acknowledged.Valentin Bartenev2-1/+8
2016-04-14HTTP/2: deduplicated some code in ngx_http_v2_state_headers().Valentin Bartenev1-18/+13
2016-04-01HTTP/2: support for unbuffered upload of request body.Valentin Bartenev2-2/+126
2016-04-01HTTP/2: rewritten handling of request body.Valentin Bartenev2-246/+223
2016-04-01HTTP/2: sending RST_STREAM with NO_ERROR to discard request body.Valentin Bartenev2-14/+25
2016-03-31Fixed logging.Sergey Kandaurov1-1/+1
2016-03-30Style.Ruslan Ermilov1-1/+1
2016-03-22Backed out server_tokens changes.Maxim Dounin1-43/+9
2016-03-22Reconsidered server_tokens with an empty value.Ruslan Ermilov1-4/+4
2016-03-21HTTP/2: improved debugging of sending control frames.Valentin Bartenev1-2/+13
2016-03-15Win32: fixed build after cf3e75cfa951.Ruslan Ermilov1-0/+4
2016-03-15Added variables support to server_tokens.Ruslan Ermilov1-10/+40
2016-02-24HTTP/2: implemented per request timeouts (closes #626).Valentin Bartenev2-51/+147
2016-02-24HTTP/2: always use temporary pool for processing headers.Valentin Bartenev2-25/+37
2016-02-24HTTP/2: cleaned up state while closing stream.Valentin Bartenev1-0/+4
2016-02-16HTTP/2: added debug logging of response headers.Valentin Bartenev1-0/+41
2016-02-16HTTP/2: use local pointer instead of r->connection.Valentin Bartenev1-2/+2
2016-02-12HTTP/2: fixed undefined behavior in ngx_http_v2_huff_encode().Valentin Bartenev1-2/+6
2016-02-11HTTP/2: implemented HPACK Huffman encoding for response headers.Valentin Bartenev3-56/+343