mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-22 00:00:06 +08:00
21 lines
371 B
Objective-C
21 lines
371 B
Objective-C
//
|
|
// OpenVPNPacket.m
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 15.01.2018.
|
|
//
|
|
|
|
#import "OpenVPNPacket.h"
|
|
|
|
@implementation OpenVPNPacket
|
|
|
|
- (instancetype)initWithData:(NSData *)data protocolFamily:(NSNumber *)protocolFamily {
|
|
if ((self = [super init])) {
|
|
_data = data;
|
|
_protocolFamily = protocolFamily;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|