aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCallOptions.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-11 14:33:00 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-11 14:33:00 -0700
commit0fc040d19acc960ed3ab331ed92b38b43d32a284 (patch)
tree6b69614b486c86606101e4eacbd1eaf2444dbf3f /src/objective-c/GRPCClient/GRPCCallOptions.h
parent2c1c22c3f1b9c0fe36589da691fbabc60ad1aa25 (diff)
Rename pemXxx parameters to PEMXxx
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCallOptions.h')
-rw-r--r--src/objective-c/GRPCClient/GRPCCallOptions.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCallOptions.h b/src/objective-c/GRPCClient/GRPCCallOptions.h
index abfe396511..ea7c1bf22d 100644
--- a/src/objective-c/GRPCClient/GRPCCallOptions.h
+++ b/src/objective-c/GRPCClient/GRPCCallOptions.h
@@ -146,17 +146,17 @@ typedef NS_ENUM(NSInteger, GRPCTransportType) {
* PEM format root certifications that is trusted. If set to nil, gRPC uses a list of default
* root certificates.
*/
-@property(copy, readonly) NSString *pemRootCert;
+@property(copy, readonly) NSString *PEMRootCertificates;
/**
* PEM format private key for client authentication, if required by the server.
*/
-@property(copy, readonly) NSString *pemPrivateKey;
+@property(copy, readonly) NSString *PEMPrivateKey;
/**
* PEM format certificate chain for client authentication, if required by the server.
*/
-@property(copy, readonly) NSString *pemCertChain;
+@property(copy, readonly) NSString *PEMCertChain;
/**
* Select the transport type to be used for this call.
@@ -278,17 +278,17 @@ typedef NS_ENUM(NSInteger, GRPCTransportType) {
* PEM format root certifications that is trusted. If set to nil, gRPC uses a list of default
* root certificates.
*/
-@property(copy, readwrite) NSString *pemRootCert;
+@property(copy, readwrite) NSString *PEMRootCertificates;
/**
* PEM format private key for client authentication, if required by the server.
*/
-@property(copy, readwrite) NSString *pemPrivateKey;
+@property(copy, readwrite) NSString *PEMPrivateKey;
/**
* PEM format certificate chain for client authentication, if required by the server.
*/
-@property(copy, readwrite) NSString *pemCertChain;
+@property(copy, readwrite) NSString *PEMCertChain;
/**
* Select the transport type to be used for this call.