mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
Declare a class which contains credentials
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// OpenVPNCredentials.m
|
||||
// OpenVPN Adapter
|
||||
//
|
||||
// Created by Sergey Abramchuk on 24.04.17.
|
||||
//
|
||||
//
|
||||
|
||||
#import "OpenVPNCredentials.h"
|
||||
#import "OpenVPNCredentials+Internal.h"
|
||||
|
||||
using namespace openvpn;
|
||||
|
||||
@interface OpenVPNCredentials () {
|
||||
ClientAPI::ProvideCreds _credentials;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation OpenVPNCredentials (Internal)
|
||||
|
||||
- (ClientAPI::ProvideCreds)credentials {
|
||||
return _credentials;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation OpenVPNCredentials
|
||||
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user