OpenVPNAdapter/OpenVPN Adapter/OpenVPNTunnelSettings.m

31 lines
569 B
Mathematica
Raw Normal View History

//
2017-05-06 00:02:51 +08:00
// OpenVPNTunnelSettings.m
// OpenVPN iOS Client
//
// Created by Sergey Abramchuk on 26.02.17.
//
//
2017-05-06 00:02:51 +08:00
#import "OpenVPNTunnelSettings.h"
2017-05-06 00:02:51 +08:00
@implementation OpenVPNTunnelSettings
- (instancetype)init
{
self = [super init];
if (self) {
_initialized = NO;
_localAddresses = [NSMutableArray new];
2017-03-21 02:23:00 +08:00
_prefixLengths = [NSMutableArray new];
_includedRoutes = [NSMutableArray new];
_excludedRoutes = [NSMutableArray new];
_dnsAddresses = [NSMutableArray new];
}
return self;
}
@end