mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
21 lines
641 B
C++
21 lines
641 B
C++
|
|
#ifndef AWGCONFIGURATOR_H
|
||
|
|
#define AWGCONFIGURATOR_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
#include "wireguardConfigurator.h"
|
||
|
|
|
||
|
|
class AwgConfigurator : public WireguardConfigurator
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
AwgConfigurator(SshSession* sshSession, QObject *parent = nullptr);
|
||
|
|
|
||
|
|
amnezia::ProtocolConfig createConfig(const amnezia::ServerCredentials &credentials, amnezia::DockerContainer container,
|
||
|
|
const amnezia::ContainerConfig &containerConfig,
|
||
|
|
const amnezia::DnsSettings &dnsSettings,
|
||
|
|
amnezia::ErrorCode &errorCode) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // AWGCONFIGURATOR_H
|