mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
100 lines
2.6 KiB
C++
100 lines
2.6 KiB
C++
#ifndef VPNCONNECTION_H
|
|
#define VPNCONNECTION_H
|
|
|
|
#include <QObject>
|
|
#include <QMetaObject>
|
|
#include <QString>
|
|
#include <QScopedPointer>
|
|
#include <QRemoteObjectNode>
|
|
#include <QTimer>
|
|
|
|
#include "core/protocols/vpnProtocol.h"
|
|
#include "core/utils/errorCodes.h"
|
|
#include "core/utils/routeModes.h"
|
|
#include "core/utils/commonStructs.h"
|
|
#include "core/repositories/secureServersRepository.h"
|
|
#include "core/repositories/secureAppSettingsRepository.h"
|
|
|
|
#include "core/vpnTrafficGuard.h"
|
|
|
|
#ifdef Q_OS_ANDROID
|
|
#include "core/protocols/androidVpnProtocol.h"
|
|
#endif
|
|
|
|
using namespace amnezia;
|
|
|
|
class VpnConnection : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit VpnConnection(SecureServersRepository* serversRepository, SecureAppSettingsRepository* appSettingsRepository, QObject* parent = nullptr);
|
|
~VpnConnection() override;
|
|
|
|
static QString bytesPerSecToText(quint64 bytes);
|
|
|
|
ErrorCode lastError() const;
|
|
Vpn::ConnectionState connectionState() const;
|
|
|
|
QSharedPointer<VpnProtocol> vpnProtocol() const;
|
|
|
|
const QString &remoteAddress() const;
|
|
|
|
#ifdef Q_OS_ANDROID
|
|
void restoreConnection();
|
|
#endif
|
|
|
|
public slots:
|
|
void setRepositories(SecureServersRepository* serversRepository, SecureAppSettingsRepository* appSettingsRepository);
|
|
void connectToVpn(int serverIndex, DockerContainer container, const QJsonObject &vpnConfiguration);
|
|
void reconnectToVpn();
|
|
void disconnectFromVpn();
|
|
|
|
void onKillSwitchModeChanged(bool enabled);
|
|
void disconnectSlots();
|
|
|
|
void setConnectionState(Vpn::ConnectionState state);
|
|
|
|
signals:
|
|
void bytesChanged(quint64 receivedBytes, quint64 sentBytes);
|
|
void connectionStateChanged(Vpn::ConnectionState state);
|
|
void vpnProtocolError(amnezia::ErrorCode error);
|
|
|
|
void serviceIsNotReady();
|
|
|
|
protected slots:
|
|
void onBytesChanged(quint64 receivedBytes, quint64 sentBytes);
|
|
void onConnectionStateChanged(Vpn::ConnectionState state);
|
|
|
|
protected:
|
|
QSharedPointer<VpnProtocol> m_vpnProtocol;
|
|
|
|
private:
|
|
SecureServersRepository* m_serversRepository;
|
|
SecureAppSettingsRepository* m_appSettingsRepository;
|
|
QScopedPointer<VpnTrafficGuard> m_trafficGuard;
|
|
|
|
QJsonObject m_vpnConfiguration;
|
|
QJsonObject m_routeMode;
|
|
QString m_remoteAddress;
|
|
|
|
// Only for iOS for now, check counters
|
|
QTimer m_checkTimer;
|
|
|
|
#ifdef Q_OS_ANDROID
|
|
AndroidVpnProtocol* androidVpnProtocol = nullptr;
|
|
|
|
AndroidVpnProtocol* createDefaultAndroidVpnProtocol();
|
|
void createAndroidConnections();
|
|
#endif
|
|
|
|
Vpn::ConnectionState m_connectionState;
|
|
|
|
void createProtocolConnections();
|
|
|
|
void appendSplitTunnelingConfig();
|
|
void appendKillSwitchConfig();
|
|
};
|
|
|
|
#endif // VPNCONNECTION_H
|