25 lines
617 B
Objective-C
25 lines
617 B
Objective-C
//
|
|
// WireGuardGoWrapper.h
|
|
// WireGuardNetworkExtension
|
|
//
|
|
// Created by Jeroen Leenarts on 21-06-18.
|
|
// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <NetworkExtension/NetworkExtension.h>
|
|
|
|
@interface WireGuardGoWrapper : NSObject
|
|
|
|
@property (nonatomic, strong) NEPacketTunnelFlow *packetFlow;
|
|
@property (nonatomic, assign) BOOL configured;
|
|
|
|
- (BOOL) turnOnWithInterfaceName: (NSString *)interfaceName settingsString: (NSString *)settingsString;
|
|
- (void) turnOff;
|
|
|
|
- (void) startReadingPackets;
|
|
|
|
+ (NSString *)versionWireGuardGo;
|
|
|
|
@end
|