diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-21 16:32:29 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-21 16:32:29 -0700 |
commit | 4a4f1496c1b2fe6dc8336ee5f00c09568165a42a (patch) | |
tree | 0dc91e2b6f8efff8ec2a9dcb2c400e2c18ed0fc2 /src/core | |
parent | 736689dbcea0d3f83389b5d84fb6a1ec2078805d (diff) |
Rename grpc_channel_create to grpc_insecure_channel_create
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/surface/channel_create.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/surface/channel_create.c b/src/core/surface/channel_create.c index 91c7b35550..bfe10a3b8c 100644 --- a/src/core/surface/channel_create.c +++ b/src/core/surface/channel_create.c @@ -151,8 +151,8 @@ static const grpc_subchannel_factory_vtable subchannel_factory_vtable = { Asynchronously: - resolve target - connect to it (trying alternatives as presented) - perform handshakes */ -grpc_channel *grpc_channel_create(const char *target, - const grpc_channel_args *args) { +grpc_channel *grpc_insecure_channel_create(const char *target, + const grpc_channel_args *args) { grpc_channel *channel = NULL; #define MAX_FILTERS 3 const grpc_channel_filter *filters[MAX_FILTERS]; |