Delete tunPersist property because tun builder doesn't use this option

This commit is contained in:
Sergey Abramchuk
2019-02-24 16:08:24 +03:00
parent 399ce8435d
commit 4889f3b8cd
2 changed files with 0 additions and 13 deletions
@@ -64,11 +64,6 @@ typedef NS_ENUM(NSInteger, OpenVPNTLSCertProfile);
*/
@property (nonatomic) NSInteger connectionTimeout;
/**
Keep tun interface active during pauses or reconnections
*/
@property (nonatomic) BOOL tunPersist;
/**
If YES and a redirect-gateway profile doesn't also define
DNS servers, use the standard Google DNS servers.
@@ -308,14 +308,6 @@ NSString *const OpenVPNTLSCertProfileDefaultValue = @"default";
_config.connTimeout = connectionTimeout;
}
- (BOOL)tunPersist {
return _config.tunPersist;
}
- (void)setTunPersist:(BOOL)tunPersist {
_config.tunPersist = tunPersist;
}
- (BOOL)googleDNSFallback {
return _config.googleDnsFallback;
}