mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
20 lines
330 B
Objective-C
20 lines
330 B
Objective-C
//
|
|
// OpenVPNConnectionInfo+Internal.h
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 26.04.17.
|
|
//
|
|
//
|
|
|
|
#import "OpenVPNConnectionInfo.h"
|
|
|
|
#include <client/ovpncli.hpp>
|
|
|
|
using namespace openvpn;
|
|
|
|
@interface OpenVPNConnectionInfo (Internal)
|
|
|
|
- (instancetype)initWithConnectionInfo:(ClientAPI::ConnectionInfo)info;
|
|
|
|
@end
|