mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
19 lines
429 B
Plaintext
19 lines
429 B
Plaintext
//
|
|
// TUNFactory.m
|
|
// OpenVPN Adapter
|
|
//
|
|
// Created by Sergey Abramchuk on 15.04.17.
|
|
//
|
|
//
|
|
|
|
#import "TUNFactory.h"
|
|
|
|
// !!! tuncli.hpp may be used as example of implementation
|
|
|
|
TunClient::Ptr TUNFactory::new_tun_client_obj(openvpn_io::io_context& io_context,
|
|
TunClientParent& parent,
|
|
TransportClient* transcli)
|
|
{
|
|
return nullptr;
|
|
}
|