0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00

ManClientInstance::Factory: added virtual stop() method.

Signed-off-by: James Yonan <james@openvpn.net>
This commit is contained in:
James Yonan 2017-10-24 00:54:45 -06:00 committed by Antonio Quartulli
parent 121e9752e7
commit b948cde4c3

View File

@ -128,6 +128,7 @@ namespace openvpn {
typedef RCPtr<Factory> Ptr;
virtual void start() = 0;
virtual void stop() = 0;
virtual Send::Ptr new_obj(Recv* instance) = 0;
};