You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2015/08/27 01:17:52 UTC

[2/2] trafficserver git commit: TS-3869: HTTP/2 Stream uses the clients window size for the servers setting

TS-3869: HTTP/2 Stream uses the clients window size for the servers setting

(cherry picked from commit 4c81be14eefe196018c9d12be6cefca35793f92b)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/361b42b3
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/361b42b3
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/361b42b3

Branch: refs/heads/6.0.x
Commit: 361b42b377923a38ff01c966476490071d806f07
Parents: 67d6385
Author: Bryan Call <bc...@apache.org>
Authored: Wed Aug 26 16:04:57 2015 -0700
Committer: Bryan Call <bc...@apache.org>
Committed: Wed Aug 26 16:17:34 2015 -0700

----------------------------------------------------------------------
 proxy/http2/Http2ConnectionState.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/361b42b3/proxy/http2/Http2ConnectionState.h
----------------------------------------------------------------------
diff --git a/proxy/http2/Http2ConnectionState.h b/proxy/http2/Http2ConnectionState.h
index f959526..ba0b7fd 100644
--- a/proxy/http2/Http2ConnectionState.h
+++ b/proxy/http2/Http2ConnectionState.h
@@ -100,7 +100,7 @@ class Http2Stream
 {
 public:
   Http2Stream(Http2StreamId sid = 0, ssize_t initial_rwnd = Http2::initial_window_size)
-    : client_rwnd(initial_rwnd), server_rwnd(initial_rwnd), header_blocks(NULL), header_blocks_length(0), request_header_length(0),
+    : client_rwnd(initial_rwnd), server_rwnd(Http2::initial_window_size), header_blocks(NULL), header_blocks_length(0), request_header_length(0),
       end_stream(false), _id(sid), _state(HTTP2_STREAM_STATE_IDLE), _fetch_sm(NULL), body_done(false), data_length(0)
   {
     _thread = this_ethread();