aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar yihuaz <yihuaz@google.com>2018-12-17 11:21:42 -0800
committerGravatar GitHub <noreply@github.com>2018-12-17 11:21:42 -0800
commit3f7e26e08588bcaceab674f1376d39d66cbaf71f (patch)
treeade161802df85eeb2021d21037f5c5ddc77e6fa9 /include
parentda2c82fb7422323519ae5f7480546f3e2397c599 (diff)
parent0531d3d3adfd12e1d9aeaa49fb19096b4c1fb5d9 (diff)
Merge pull request #17370 from yihuazhang/local_tcp_loopback
Extend local channel/server credentials to support TCP loopback
Diffstat (limited to 'include')
-rw-r--r--include/grpc/grpc_security_constants.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/grpc/grpc_security_constants.h b/include/grpc/grpc_security_constants.h
index f935557f2d..a082f67010 100644
--- a/include/grpc/grpc_security_constants.h
+++ b/include/grpc/grpc_security_constants.h
@@ -106,10 +106,10 @@ typedef enum {
} grpc_ssl_client_certificate_request_type;
/**
- * Type of local connection for which local channel/server credentials will be
- * applied. It only supports UDS for now.
+ * Type of local connections for which local channel/server credentials will be
+ * applied. It supports UDS and local TCP connections.
*/
-typedef enum { UDS = 0 } grpc_local_connect_type;
+typedef enum { UDS = 0, LOCAL_TCP } grpc_local_connect_type;
#ifdef __cplusplus
}