diff options
author | Yang Gao <yangg@google.com> | 2015-07-27 14:15:48 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-07-27 14:15:48 -0700 |
commit | f2b2558cc38ea68c070a528ccf612a2eec90ee81 (patch) | |
tree | ecc13f92439fc39b93e2e027f4883010d452b910 /src/csharp | |
parent | 6284cdb00db15929475a0e1e34955d113c94870c (diff) | |
parent | d9aed1d0103122c235c5577f7a00ead9cbc1a7b9 (diff) |
Merge pull request #2593 from ctiller/elliptic-orange-chamelion
Rename grpc_channel_create to grpc_insecure_channel_create
Diffstat (limited to 'src/csharp')
-rw-r--r-- | src/csharp/ext/grpc_csharp_ext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/csharp/ext/grpc_csharp_ext.c b/src/csharp/ext/grpc_csharp_ext.c index 1c5891bbff..219f6d7d73 100644 --- a/src/csharp/ext/grpc_csharp_ext.c +++ b/src/csharp/ext/grpc_csharp_ext.c @@ -367,8 +367,9 @@ grpcsharp_completion_queue_pluck(grpc_completion_queue *cq, void *tag) { /* Channel */ GPR_EXPORT grpc_channel *GPR_CALLTYPE + grpcsharp_insecure_channel_create(const char *target, const grpc_channel_args *args) { - return grpc_channel_create(target, args); + return grpc_insecure_channel_create(target, args); } GPR_EXPORT void GPR_CALLTYPE grpcsharp_channel_destroy(grpc_channel *channel) { |