mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
Fix order of import statements
This commit is contained in:
@@ -6,13 +6,11 @@
|
|||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "OpenVPNAdapter.h"
|
|
||||||
|
|
||||||
#define OPENVPN_EXTERN extern
|
#define OPENVPN_EXTERN extern
|
||||||
|
|
||||||
|
#import <NetworkExtension/NetworkExtension.h>
|
||||||
#import <client/ovpncli.hpp>
|
#import <client/ovpncli.hpp>
|
||||||
#import <openvpn/tun/client/tunbase.hpp>
|
#import <openvpn/tun/client/tunbase.hpp>
|
||||||
#import <NetworkExtension/NetworkExtension.h>
|
|
||||||
#import "OpenVPNAdapterEvent.h"
|
#import "OpenVPNAdapterEvent.h"
|
||||||
#import "OpenVPNCredentials+Internal.h"
|
#import "OpenVPNCredentials+Internal.h"
|
||||||
#import "OpenVPNConfiguration+Internal.h"
|
#import "OpenVPNConfiguration+Internal.h"
|
||||||
@@ -24,6 +22,7 @@
|
|||||||
#import "OpenVPNProperties+Internal.h"
|
#import "OpenVPNProperties+Internal.h"
|
||||||
#import "OpenVPNSessionToken+Internal.h"
|
#import "OpenVPNSessionToken+Internal.h"
|
||||||
#import "OpenVPNTransportStats+Internal.h"
|
#import "OpenVPNTransportStats+Internal.h"
|
||||||
|
#import "OpenVPNAdapter.h"
|
||||||
|
|
||||||
class Client;
|
class Client;
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
// Created by Jonathan Downing on 12/10/2017.
|
// Created by Jonathan Downing on 12/10/2017.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "OpenVPNNetworkSettingsBuilder.h"
|
|
||||||
#import <NetworkExtension/NetworkExtension.h>
|
#import <NetworkExtension/NetworkExtension.h>
|
||||||
|
#import "OpenVPNNetworkSettingsBuilder.h"
|
||||||
|
|
||||||
@interface OpenVPNNetworkSettingsBuilder ()
|
@interface OpenVPNNetworkSettingsBuilder ()
|
||||||
@property (nonatomic) NSMutableArray<NSString *> *ipv4LocalAddresses;
|
@property (nonatomic) NSMutableArray<NSString *> *ipv4LocalAddresses;
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
// Created by Jonathan Downing on 12/10/2017.
|
// Created by Jonathan Downing on 12/10/2017.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "OpenVPNPacketFlowAdapter.h"
|
|
||||||
#import <NetworkExtension/NetworkExtension.h>
|
#import <NetworkExtension/NetworkExtension.h>
|
||||||
#import <openvpn/ip/ip.hpp>
|
#import <openvpn/ip/ip.hpp>
|
||||||
|
#import "OpenVPNPacketFlowAdapter.h"
|
||||||
|
|
||||||
@interface OpenVPNPacketFlowAdapter () {
|
@interface OpenVPNPacketFlowAdapter () {
|
||||||
CFSocketRef _openVPNClientSocket;
|
CFSocketRef _openVPNClientSocket;
|
||||||
|
|||||||
Reference in New Issue
Block a user