aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-08-26 03:50:39 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-08-26 03:50:39 -0700
commit9c5bde5e4e2cc0c81c3c6411b3aa922d3e995a54 (patch)
tree270d52c92efbf923855cd24efab620029af0aa7d /test/core/util
parentf71fd84e42cd8053de35df7d6137f7c2e2407ce3 (diff)
More commits
Diffstat (limited to 'test/core/util')
-rw-r--r--test/core/util/mock_endpoint.cc1
-rw-r--r--test/core/util/passthru_endpoint.cc1
-rw-r--r--test/core/util/trickle_endpoint.cc3
3 files changed, 4 insertions, 1 deletions
diff --git a/test/core/util/mock_endpoint.cc b/test/core/util/mock_endpoint.cc
index ef6fd62b51..570edf18e5 100644
--- a/test/core/util/mock_endpoint.cc
+++ b/test/core/util/mock_endpoint.cc
@@ -114,6 +114,7 @@ static const grpc_endpoint_vtable vtable = {
me_get_resource_user,
me_get_peer,
me_get_fd,
+ nullptr,
};
grpc_endpoint* grpc_mock_endpoint_create(void (*on_write)(grpc_slice slice),
diff --git a/test/core/util/passthru_endpoint.cc b/test/core/util/passthru_endpoint.cc
index 3cc8ad6fe1..835a39394c 100644
--- a/test/core/util/passthru_endpoint.cc
+++ b/test/core/util/passthru_endpoint.cc
@@ -171,6 +171,7 @@ static const grpc_endpoint_vtable vtable = {
me_get_resource_user,
me_get_peer,
me_get_fd,
+ nullptr,
};
static void half_init(half* m, passthru_endpoint* parent,
diff --git a/test/core/util/trickle_endpoint.cc b/test/core/util/trickle_endpoint.cc
index 62ed72a629..8d93db05e6 100644
--- a/test/core/util/trickle_endpoint.cc
+++ b/test/core/util/trickle_endpoint.cc
@@ -148,7 +148,8 @@ static const grpc_endpoint_vtable vtable = {te_read,
te_destroy,
te_get_resource_user,
te_get_peer,
- te_get_fd};
+ te_get_fd,
+ nullptr};
grpc_endpoint* grpc_trickle_endpoint_create(grpc_endpoint* wrap,
double bytes_per_second) {