aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-30 19:36:25 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-30 19:36:25 +0200
commitbc8f515fb8a9053c05d2a62336fe181113262a17 (patch)
tree278385226ffd5705b61ea774cff76bd4c3f0b0ba /include/grpc
parent2bc7b8e0a3975352eeffcb7751d6aef687fd1284 (diff)
clang format
Diffstat (limited to 'include/grpc')
-rw-r--r--include/grpc/grpc_security_constants.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/grpc/grpc_security_constants.h b/include/grpc/grpc_security_constants.h
index 7f7c89d667..f935557f2d 100644
--- a/include/grpc/grpc_security_constants.h
+++ b/include/grpc/grpc_security_constants.h
@@ -58,9 +58,9 @@ typedef enum {
typedef enum {
/** Server does not request client certificate.
- The certificate presented by the client is not checked by the server at all.
- (A client may present a self signed or signed certificate or not present a certificate at all and any of
- those option would be accepted) */
+ The certificate presented by the client is not checked by the server at
+ all. (A client may present a self signed or signed certificate or not
+ present a certificate at all and any of those option would be accepted) */
GRPC_SSL_DONT_REQUEST_CLIENT_CERTIFICATE,
/** Server requests client certificate but does not enforce that the client
presents a certificate.
@@ -69,19 +69,19 @@ typedef enum {
the application (the necessary metadata will be available to the
application via authentication context properties, see grpc_auth_context).
- The client's key certificate pair must be valid for the SSL connection to be
- established. */
+ The client's key certificate pair must be valid for the SSL connection to
+ be established. */
GRPC_SSL_REQUEST_CLIENT_CERTIFICATE_BUT_DONT_VERIFY,
/** Server requests client certificate but does not enforce that the client
presents a certificate.
If the client presents a certificate, the client authentication is done by
the gRPC framework. (For a successful connection the client needs to either
- present a certificate that can be verified against the root certificate configured by the server
- or not present a certificate at all)
+ present a certificate that can be verified against the root certificate
+ configured by the server or not present a certificate at all)
- The client's key certificate pair must be valid for the SSL connection to be
- established. */
+ The client's key certificate pair must be valid for the SSL connection to
+ be established. */
GRPC_SSL_REQUEST_CLIENT_CERTIFICATE_AND_VERIFY,
/** Server requests client certificate and enforces that the client presents a
certificate.
@@ -90,18 +90,18 @@ typedef enum {
the application (the necessary metadata will be available to the
application via authentication context properties, see grpc_auth_context).
- The client's key certificate pair must be valid for the SSL connection to be
- established. */
+ The client's key certificate pair must be valid for the SSL connection to
+ be established. */
GRPC_SSL_REQUEST_AND_REQUIRE_CLIENT_CERTIFICATE_BUT_DONT_VERIFY,
/** Server requests client certificate and enforces that the client presents a
certificate.
The cerificate presented by the client is verified by the gRPC framework.
- (For a successful connection the client needs to present a certificate that can be verified against
- the root certificate configured by the server)
+ (For a successful connection the client needs to present a certificate that
+ can be verified against the root certificate configured by the server)
- The client's key certificate pair must be valid for the SSL connection to be
- established. */
+ The client's key certificate pair must be valid for the SSL connection to
+ be established. */
GRPC_SSL_REQUEST_AND_REQUIRE_CLIENT_CERTIFICATE_AND_VERIFY
} grpc_ssl_client_certificate_request_type;