Wrap private key password and key direction properties

This commit is contained in:
Sergey Abramchuk
2017-04-24 13:11:25 +03:00
parent dcf06ced20
commit 61228ed00d
2 changed files with 28 additions and 0 deletions
+12
View File
@@ -122,4 +122,16 @@ typedef NS_ENUM(NSInteger, OpenVPNCompressionMode) {
*/
@property (nonatomic) OpenVPNCompressionMode compressionMode;
/**
Private key password
*/
@property (nullable, nonatomic) NSString *privateKeyPassword;
/**
Default key direction parameter for tls-auth (0, 1,
or -1 (bidirectional -- default)) if no key-direction
parameter defined in profile
*/
@property (nonatomic) NSInteger keyDirection;
@end