Light refactoring: line breaking and classes/vars renaming

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