Return the methods and configurations related to the tun builder which were removed after merging

This commit is contained in:
Sergey Abramchuk
2017-05-05 17:50:53 +03:00
parent a71b90bd17
commit f7b168e114
9 changed files with 525 additions and 116 deletions
+23
View File
@@ -0,0 +1,23 @@
//
// TUNConfiguration.h
// OpenVPN iOS Client
//
// Created by Sergey Abramchuk on 26.02.17.
//
//
#import <Foundation/Foundation.h>
@interface TUNConfiguration : NSObject
@property (nonatomic) BOOL initialized;
@property (readonly, strong, nonatomic) NSMutableArray *localAddresses;
@property (readonly, strong, nonatomic) NSMutableArray *prefixLengths;
@property (readonly, strong, nonatomic) NSMutableArray *includedRoutes;
@property (readonly, strong, nonatomic) NSMutableArray *excludedRoutes;
@property (readonly, strong, nonatomic) NSMutableArray *dnsAddresses;
@end