17 lines
368 B
Objective-C
17 lines
368 B
Objective-C
//
|
|
// WireGuardGoWrapper.h
|
|
// WireGuardNetworkExtension
|
|
//
|
|
// Created by Jeroen Leenarts on 21-06-18.
|
|
// Copyright © 2018 WireGuard. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface WireGuardGoWrapper : NSObject
|
|
|
|
- (void) turnOnWithInterfaceName: (NSString *)interfaceName settingsString: (NSString *)settingsString;
|
|
- (void) turnOff;
|
|
|
|
@end
|