Rename grpc_channel_create to grpc_insecure_channel_create
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h
index 504f0cc..7b2feda 100644
--- a/include/grpc/grpc.h
+++ b/include/grpc/grpc.h
@@ -438,8 +438,8 @@
clients will want to simply pass NULL. See grpc_channel_args definition for
more on this. The data in 'args' need only live through the invocation of
this function. */
-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);
/** Create a lame client: this client fails every operation attempted on it. */
grpc_channel *grpc_lame_client_channel_create(void);