Files
DefaultVPN/client/core/sshclient.cpp

19 lines
297 B
C++
Raw Normal View History

#include "sshclient.h"
2022-12-23 10:13:06 +03:00
namespace libssh {
Client::Client(QObject *parent) : QObject(parent)
{
ssh_init();
}
2022-12-23 10:13:06 +03:00
Client::~Client()
{
ssh_finalize();
}
2022-12-23 10:13:06 +03:00
std::shared_ptr<Session> Client::getSession()
{
return std::make_shared<Session>();
}
}