aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/bm_fullstack_trickle.cc
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-07-13 19:45:51 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-07-18 17:06:58 -0700
commit3c909d55fd56a8fd3d4b25d88722ded67dae3c51 (patch)
treec1aae416843bbd2c421da8c740be5048a1620696 /test/cpp/microbenchmarks/bm_fullstack_trickle.cc
parent2d1c61699ecb10bca0fc735f38766ba370bf6ea0 (diff)
Pull out flow control objects
Diffstat (limited to 'test/cpp/microbenchmarks/bm_fullstack_trickle.cc')
-rw-r--r--test/cpp/microbenchmarks/bm_fullstack_trickle.cc17
1 files changed, 9 insertions, 8 deletions
diff --git a/test/cpp/microbenchmarks/bm_fullstack_trickle.cc b/test/cpp/microbenchmarks/bm_fullstack_trickle.cc
index 13c96ef3e1..5c44b9751f 100644
--- a/test/cpp/microbenchmarks/bm_fullstack_trickle.cc
+++ b/test/cpp/microbenchmarks/bm_fullstack_trickle.cc
@@ -127,14 +127,15 @@ class TrickledCHTTP2 : public EndpointPairFixture {
client->lists[GRPC_CHTTP2_LIST_STALLED_BY_STREAM].head != nullptr,
server->lists[GRPC_CHTTP2_LIST_STALLED_BY_TRANSPORT].head != nullptr,
server->lists[GRPC_CHTTP2_LIST_STALLED_BY_STREAM].head != nullptr,
- client->remote_window, server->remote_window, client->announced_window,
- server->announced_window,
- client_stream ? client_stream->remote_window_delta : -1,
- server_stream ? server_stream->remote_window_delta : -1,
- client_stream ? client_stream->local_window_delta : -1,
- server_stream ? server_stream->local_window_delta : -1,
- client_stream ? client_stream->announced_window_delta : -1,
- server_stream ? server_stream->announced_window_delta : -1,
+ client->flow_control.remote_window, server->flow_control.remote_window,
+ client->flow_control.announced_window,
+ server->flow_control.announced_window,
+ client_stream ? client_stream->flow_control.remote_window_delta : -1,
+ server_stream ? server_stream->flow_control.remote_window_delta : -1,
+ client_stream ? client_stream->flow_control.local_window_delta : -1,
+ server_stream ? server_stream->flow_control.local_window_delta : -1,
+ client_stream ? client_stream->flow_control.announced_window_delta : -1,
+ server_stream ? server_stream->flow_control.announced_window_delta : -1,
client->settings[GRPC_PEER_SETTINGS]
[GRPC_CHTTP2_SETTINGS_INITIAL_WINDOW_SIZE],
client->settings[GRPC_LOCAL_SETTINGS]