mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
16 lines
436 B
Objective-C
16 lines
436 B
Objective-C
|
|
#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
|