aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-11-02 11:57:37 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-11-02 11:57:37 -0700
commit68413c221e341f4f00326e892077c5fcd4b4f788 (patch)
tree8f55f49a3d203fc76031c2b704fe60e9567a76e5 /test/core
parente5ec9ac9e2e0195e04c7c99d1c2d9a87f67404fb (diff)
Remove GRPC_SOCKET
Diffstat (limited to 'test/core')
-rw-r--r--test/core/internal_api_canaries/iomgr.c2
-rw-r--r--test/core/util/mock_endpoint.c4
-rw-r--r--test/core/util/passthru_endpoint.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/test/core/internal_api_canaries/iomgr.c b/test/core/internal_api_canaries/iomgr.c
index 3620b93285..0995332933 100644
--- a/test/core/internal_api_canaries/iomgr.c
+++ b/test/core/internal_api_canaries/iomgr.c
@@ -85,7 +85,7 @@ static void test_code(void) {
grpc_endpoint_shutdown,
grpc_endpoint_destroy,
grpc_endpoint_get_peer,
- grpc_endpoint_get_socket};
+ grpc_endpoint_get_fd};
endpoint.vtable = &vtable;
grpc_endpoint_read(&exec_ctx, &endpoint, NULL, NULL);
diff --git a/test/core/util/mock_endpoint.c b/test/core/util/mock_endpoint.c
index 15e88968e8..063d4366cf 100644
--- a/test/core/util/mock_endpoint.c
+++ b/test/core/util/mock_endpoint.c
@@ -96,7 +96,7 @@ static char *me_get_peer(grpc_endpoint *ep) {
return gpr_strdup("fake:mock_endpoint");
}
-static GRPC_SOCKET *me_get_socket(grpc_endpoint *ep) { return NULL; }
+static int me_get_fd(grpc_endpoint *ep) { return -1; }
static grpc_workqueue *me_get_workqueue(grpc_endpoint *ep) { return NULL; }
@@ -108,7 +108,7 @@ static const grpc_endpoint_vtable vtable = {me_read,
me_shutdown,
me_destroy,
me_get_peer,
- me_get_socket};
+ me_get_fd};
grpc_endpoint *grpc_mock_endpoint_create(void (*on_write)(gpr_slice slice)) {
grpc_mock_endpoint *m = gpr_malloc(sizeof(*m));
diff --git a/test/core/util/passthru_endpoint.c b/test/core/util/passthru_endpoint.c
index 5c7167207f..f40177819e 100644
--- a/test/core/util/passthru_endpoint.c
+++ b/test/core/util/passthru_endpoint.c
@@ -141,7 +141,7 @@ static char *me_get_peer(grpc_endpoint *ep) {
return gpr_strdup("fake:mock_endpoint");
}
-static GRPC_SOCKET *me_get_socket(grpc_endpoint *ep) { return NULL; }
+static int me_get_fd(grpc_endpoint *ep) { return -1; }
static grpc_workqueue *me_get_workqueue(grpc_endpoint *ep) { return NULL; }
@@ -153,7 +153,7 @@ static const grpc_endpoint_vtable vtable = {me_read,
me_shutdown,
me_destroy,
me_get_peer,
- me_get_socket};
+ me_get_fd};
static void half_init(half *m, passthru_endpoint *parent) {
m->base.vtable = &vtable;