Rename OpenVPNPacketFlow to OpenVPNPacketFlowBridge

This commit is contained in:
Sergey Abramchuk
2017-10-28 13:12:25 +03:00
parent a4d2004128
commit f7678976c5
4 changed files with 25 additions and 25 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// OpenVPNPacketFlowBridge.h
// OpenVPN Adapter
//
// Created by Jonathan Downing on 12/10/2017.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class NEPacketTunnelFlow;
@interface OpenVPNPacketFlowBridge : NSObject
@property (nonatomic, readonly) CFSocketNativeHandle socketHandle;
- (instancetype)init NS_UNAVAILABLE;
- (nullable instancetype)initWithPacketFlow:(NEPacketTunnelFlow *)packetFlow NS_DESIGNATED_INITIALIZER;
@end
NS_ASSUME_NONNULL_END