Repository: trafficserver Updated Branches: refs/heads/6.1.x 0f512405f -> 25ec8547d
TS-4188: Client initial window size is set incorrectly in HTTP/2 This closes #462 (cherry picked from commit 8c38c6c42dd420b3cf54288fbbe25e98211218a9) Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/25ec8547 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/25ec8547 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/25ec8547 Branch: refs/heads/6.1.x Commit: 25ec8547d01ad93e413f62574d5080f1490526c4 Parents: 0f51240 Author: Bryan Call <[email protected]> Authored: Tue Feb 9 09:35:10 2016 -0800 Committer: Leif Hedstrom <[email protected]> Committed: Thu Feb 11 10:26:11 2016 -0800 ---------------------------------------------------------------------- proxy/http2/Http2ConnectionState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/25ec8547/proxy/http2/Http2ConnectionState.h ---------------------------------------------------------------------- diff --git a/proxy/http2/Http2ConnectionState.h b/proxy/http2/Http2ConnectionState.h index 44d0fca..9423c4e 100644 --- a/proxy/http2/Http2ConnectionState.h +++ b/proxy/http2/Http2ConnectionState.h @@ -105,7 +105,7 @@ class Http2ConnectionState : public Continuation { public: Http2ConnectionState() - : Continuation(NULL), ua_session(NULL), client_rwnd(Http2::initial_window_size), server_rwnd(Http2::initial_window_size), + : Continuation(NULL), ua_session(NULL), client_rwnd(HTTP2_INITIAL_WINDOW_SIZE), server_rwnd(Http2::initial_window_size), stream_list(), latest_streamid(0), client_streams_count(0), continued_stream_id(0) { SET_HANDLER(&Http2ConnectionState::main_event_handler);
