mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-06 00:00:03 +08:00
Wrap eval config
This commit is contained in:
79
OpenVPN Adapter/OpenVPNProperties.h
Normal file
79
OpenVPN Adapter/OpenVPNProperties.h
Normal file
@@ -0,0 +1,79 @@
|
||||
//
|
||||
// OpenVPNProperties.h
|
||||
// OpenVPN Adapter
|
||||
//
|
||||
// Created by Sergey Abramchuk on 26.04.17.
|
||||
//
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#import "OpenVPNTransportProtocol.h"
|
||||
|
||||
@class OpenVPNServerEntry;
|
||||
|
||||
@interface OpenVPNProperties : NSObject
|
||||
|
||||
/**
|
||||
This username must be used with profile
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSString *username;
|
||||
|
||||
/**
|
||||
Profile name of config
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSString *profileName;
|
||||
|
||||
/**
|
||||
"Friendly" name of config
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSString *friendlyName;
|
||||
|
||||
/**
|
||||
If YES no creds required, otherwise username/password required
|
||||
*/
|
||||
@property (readonly, nonatomic) BOOL autologin;
|
||||
|
||||
/**
|
||||
Static challenge, may be empty, ignored if autologin
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSString *staticChallenge;
|
||||
|
||||
/**
|
||||
YES if static challenge response should be echoed to UI, ignored if autologin
|
||||
*/
|
||||
@property (readonly, nonatomic) BOOL staticChallengeEcho;
|
||||
|
||||
/**
|
||||
YES if this profile requires a private key password
|
||||
*/
|
||||
@property (readonly, nonatomic) BOOL privateKeyPasswordRequired;
|
||||
|
||||
/**
|
||||
YES if user is allowed to save authentication password in UI
|
||||
*/
|
||||
@property (readonly, nonatomic) BOOL allowPasswordSave;
|
||||
|
||||
/**
|
||||
Address of the first remote item in config
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSString *remoteHost;
|
||||
|
||||
/**
|
||||
Port of the first remote item in config
|
||||
*/
|
||||
@property (readonly, nonatomic) NSUInteger remotePort;
|
||||
|
||||
/**
|
||||
Transport protocol of the first remote item in config
|
||||
*/
|
||||
@property (readonly, nonatomic) OpenVPNTransportProtocol remoteProto;
|
||||
|
||||
/**
|
||||
Optional list of user-selectable VPN servers
|
||||
*/
|
||||
@property (nullable, readonly, nonatomic) NSArray<OpenVPNServerEntry *> *servers;
|
||||
|
||||
- (nonnull instancetype) __unavailable init;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user