Repository: trafficserver Updated Branches: refs/heads/master cecb1ee94 -> 8c38c6c42
TS-4188: Client initial window size is set incorrectly in HTTP/2 This closes #462 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/8c38c6c4 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/8c38c6c4 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/8c38c6c4 Branch: refs/heads/master Commit: 8c38c6c42dd420b3cf54288fbbe25e98211218a9 Parents: cecb1ee Author: Bryan Call <[email protected]> Authored: Tue Feb 9 09:35:10 2016 -0800 Committer: Bryan Call <[email protected]> Committed: Tue Feb 9 10:10:35 2016 -0800 ---------------------------------------------------------------------- proxy/http2/Http2ConnectionState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8c38c6c4/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);
