Files
stvpn/works/rpcvar/tunclient.hpp
T
Олег Бородин eda9b8986b working commit
2026-05-05 11:37:10 +02:00

16 lines
332 B
C++

#include <expected>
#include <string>
#include <cstring>
#include <interface.hpp>
#include <service.hpp>
class TClient {
private:
Interface iface;
public:
std::expected<void, std::string> Create(const std::string name, const std::string addr, const int prefix);
std::expected<void, std::string> Run();
};