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:05:29 UTC

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

Repository: trafficserver
Updated Branches:
  refs/heads/master a898895a5 -> 4c81be14e


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


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

Branch: refs/heads/master
Commit: 4c81be14eefe196018c9d12be6cefca35793f92b
Parents: a898895
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:04:57 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/4c81be14/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();