aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/fullstack_fixtures.h
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-11-09 09:14:14 -0800
committerGravatar Mark D. Roth <roth@google.com>2017-11-09 09:14:14 -0800
commit04c97d0e0daec7c47d0ee5fcb8038270dd2d3328 (patch)
treeac7f805c441520d59c4cfd3db84118c35474e435 /test/cpp/microbenchmarks/fullstack_fixtures.h
parentbcfd0f38fcdcee62d5187ab2a0d24a06f37241b5 (diff)
Add notify_on_receive_settings closure to chttp2 transport.
Diffstat (limited to 'test/cpp/microbenchmarks/fullstack_fixtures.h')
-rw-r--r--test/cpp/microbenchmarks/fullstack_fixtures.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/cpp/microbenchmarks/fullstack_fixtures.h b/test/cpp/microbenchmarks/fullstack_fixtures.h
index 7db23234b6..d59b00b048 100644
--- a/test/cpp/microbenchmarks/fullstack_fixtures.h
+++ b/test/cpp/microbenchmarks/fullstack_fixtures.h
@@ -186,7 +186,8 @@ class EndpointPairFixture : public BaseFixture {
grpc_server_setup_transport(&exec_ctx, server_->c_server(),
server_transport_, NULL, server_args);
- grpc_chttp2_transport_start_reading(&exec_ctx, server_transport_, NULL);
+ grpc_chttp2_transport_start_reading(&exec_ctx, server_transport_,
+ nullptr, nullptr);
}
/* create channel */
@@ -202,7 +203,8 @@ class EndpointPairFixture : public BaseFixture {
grpc_channel* channel =
grpc_channel_create(&exec_ctx, "target", &c_args,
GRPC_CLIENT_DIRECT_CHANNEL, client_transport_);
- grpc_chttp2_transport_start_reading(&exec_ctx, client_transport_, NULL);
+ grpc_chttp2_transport_start_reading(&exec_ctx, client_transport_,
+ nullptr, nullptr);
channel_ = CreateChannelInternal("", channel);
}