Refactoring/ios (#300)
iOS app refactoring (native part): - connection bugs fixed - improved stability - logs from network extension
This commit is contained in:
parent
3ce1e40b43
commit
ece15c7394
32 changed files with 935 additions and 3191 deletions
15
client/platforms/ios/ios_controller_wrapper.h
Normal file
15
client/platforms/ios/ios_controller_wrapper.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#import <NetworkExtension/NetworkExtension.h>
|
||||
#import <NetworkExtension/NETunnelProviderSession.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
class IosController;
|
||||
|
||||
@interface IosControllerWrapper : NSObject {
|
||||
IosController *cppController;
|
||||
}
|
||||
|
||||
- (instancetype)initWithCppController:(IosController *)controller;
|
||||
- (void)vpnStatusDidChange:(NSNotification *)notification;
|
||||
- (void)vpnConfigurationDidChange:(NSNotification *)notification;
|
||||
|
||||
@end
|
||||
Loading…
Add table
Add a link
Reference in a new issue