mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
21 lines
755 B
C++
21 lines
755 B
C++
|
|
#ifndef TELEMTINSTALLER_H
|
||
|
|
#define TELEMTINSTALLER_H
|
||
|
|
|
||
|
|
#include "installerBase.h"
|
||
|
|
|
||
|
|
class TelemtInstaller : public InstallerBase {
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit TelemtInstaller(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
amnezia::ErrorCode
|
||
|
|
extractConfigFromContainer(amnezia::DockerContainer container, const amnezia::ServerCredentials &credentials,
|
||
|
|
SshSession *sshSession, amnezia::ContainerConfig &config) override;
|
||
|
|
|
||
|
|
static void uploadClientSettingsSnapshot(SshSession &sshSession, const amnezia::ServerCredentials &credentials,
|
||
|
|
amnezia::DockerContainer container,
|
||
|
|
const amnezia::ContainerConfig &config);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // TELEMTINSTALLER_H
|