mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
77 lines
1.8 KiB
Plaintext
77 lines
1.8 KiB
Plaintext
//
|
|
// OpenVPNReachability.m
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 17.07.17.
|
|
//
|
|
//
|
|
|
|
#import "OpenVPNReachability.h"
|
|
#import "OpenVPNReachability+Internal.h"
|
|
|
|
@interface OpenVPNReachability () {
|
|
BOOL _isTracking;
|
|
OpenVPNReachabilityStatus _reachabilityStatus;
|
|
}
|
|
|
|
@property (assign, nonatomic) OpenVPNReachabilityTracker *reachabilityTracker;
|
|
@property (copy, nonatomic) void (^ reachabilityStatusChangedBlock)(OpenVPNReachabilityStatus);
|
|
|
|
@end
|
|
|
|
@implementation OpenVPNReachability (Internal)
|
|
|
|
- (void)updateReachabilityStatus:(OpenVPNReachabilityStatus)status {
|
|
_reachabilityStatus = status;
|
|
if (self.reachabilityStatusChangedBlock) {
|
|
self.reachabilityStatusChangedBlock(status);
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation OpenVPNReachability
|
|
|
|
- (BOOL)isTracking {
|
|
return _isTracking;
|
|
}
|
|
|
|
- (OpenVPNReachabilityStatus)reachabilityStatus {
|
|
return _reachabilityStatus;
|
|
}
|
|
|
|
- (nonnull instancetype)init {
|
|
self = [super init];
|
|
if (self) {
|
|
_isTracking = NO;
|
|
_reachabilityStatus = OpenVPNReachabilityStatusNotReachable;
|
|
|
|
self.reachabilityTracker = new OpenVPNReachabilityTracker(true, false, (__bridge void *)self);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)startTrackingWithCallback:(void (^)(OpenVPNReachabilityStatus))callback {
|
|
self.reachabilityStatusChangedBlock = callback;
|
|
|
|
dispatch_queue_t main = dispatch_get_main_queue();
|
|
dispatch_async(main, ^{
|
|
self.reachabilityTracker->reachability_tracker_schedule();
|
|
});
|
|
_isTracking = YES;
|
|
}
|
|
|
|
- (void)stopTracking {
|
|
dispatch_queue_t main = dispatch_get_main_queue();
|
|
dispatch_async(main, ^{
|
|
self.reachabilityTracker->reachability_tracker_cancel();
|
|
});
|
|
_isTracking = NO;
|
|
}
|
|
|
|
- (void)dealloc {
|
|
delete self.reachabilityTracker;
|
|
}
|
|
|
|
@end
|