mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
22 lines
438 B
Objective-C
22 lines
438 B
Objective-C
//
|
|
// OpenVPNReachability.h
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 17.07.17.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "OpenVPNReachabilityStatus.h"
|
|
|
|
@interface OpenVPNReachability : NSObject
|
|
|
|
@property (readonly, nonatomic) OpenVPNReachabilityStatus reachabilityStatus;
|
|
|
|
- (nonnull instancetype)initWatchingWWAN:(BOOL)watchWWAN watchingWiFi:(BOOL)watchWiFi;
|
|
|
|
- (void)startTracking;
|
|
- (void)stopTracking;
|
|
|
|
@end
|