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

trafficserver git commit: [TS-3869] clang format

Repository: trafficserver
Updated Branches:
  refs/heads/master fc6037ef3 -> 5ff704040


[TS-3869] clang format


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

Branch: refs/heads/master
Commit: 5ff70404075283cd8996ea5ae46a3caf3298190d
Parents: fc6037e
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Thu Aug 27 23:59:01 2015 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Thu Aug 27 23:59:01 2015 +0000

----------------------------------------------------------------------
 proxy/http2/Http2ConnectionState.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5ff70404/proxy/http2/Http2ConnectionState.h
----------------------------------------------------------------------
diff --git a/proxy/http2/Http2ConnectionState.h b/proxy/http2/Http2ConnectionState.h
index ba0b7fd..d089278 100644
--- a/proxy/http2/Http2ConnectionState.h
+++ b/proxy/http2/Http2ConnectionState.h
@@ -100,8 +100,9 @@ class Http2Stream
 {
 public:
   Http2Stream(Http2StreamId sid = 0, ssize_t initial_rwnd = Http2::initial_window_size)
-    : 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)
+    : 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();
     HTTP2_INCREMENT_THREAD_DYN_STAT(HTTP2_STAT_CURRENT_CLIENT_STREAM_COUNT, _thread);