mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* Add network status check for AWG/WG protocol * Use service for PingSender * Cleanup unused code * Use networkchecker for all protocols * fix android build * add delay for ping checker stop * handle for interafe problems on windows * Restart IpcClient after OS suspend * Add DBus network checker for Linux * Use ping check for tun interfce * Windows suspend mode handler * MacOS suspend mode handler draft * Add delay for Linux wakeup reconnect * Add delay for Linux wakeup reconnect * Fix macOS wakeup/sleep prob Fix macOS not receiving wakeup/sleep events * fix done * Update deploy.yml fix CICD * Update vpnconnection.cpp update fix build CICD * Update vpnconnection.cpp update fix build cicd macos * Update deploy.yml fix CICD build macos * Update deploy.yml fix CICD macos * feat: implement SCP write buffer, improve network check and refactor macOS OpenGL support * feat: add tunnel addresses updated signal and handle network check based on gateway and local address availability * refactor: improve IpcClient connection handling and instance management * fix: scp revert. * fix: cmake reverted. * fix: submodules updated --------- Co-authored-by: Mykola Baibuz <mykola.baibuz@gmail.com> Co-authored-by: Yaroslav Yashin <yaroslav.yashin@gmail.com> Co-authored-by: vkamn <vk@amnezia.org>
69 lines
1.8 KiB
C++
69 lines
1.8 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef INTERFACECONFIG_H
|
|
#define INTERFACECONFIG_H
|
|
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include "ipaddress.h"
|
|
|
|
class QJsonObject;
|
|
|
|
class InterfaceConfig {
|
|
Q_GADGET
|
|
|
|
public:
|
|
InterfaceConfig() {}
|
|
|
|
enum HopType { SingleHop, MultiHopEntry, MultiHopExit };
|
|
Q_ENUM(HopType)
|
|
|
|
HopType m_hopType;
|
|
QString m_privateKey;
|
|
QString m_deviceIpv4Address;
|
|
QString m_deviceIpv6Address;
|
|
QString m_serverIpv4Gateway;
|
|
QString m_serverIpv6Gateway;
|
|
QString m_serverPublicKey;
|
|
QString m_serverIpv4AddrIn;
|
|
QString m_serverPskKey;
|
|
QString m_serverIpv6AddrIn;
|
|
QString m_primaryDnsServer;
|
|
QString m_secondaryDnsServer;
|
|
int m_serverPort = 0;
|
|
int m_deviceMTU = 1420;
|
|
QList<IPAddress> m_allowedIPAddressRanges;
|
|
QStringList m_excludedAddresses;
|
|
QStringList m_vpnDisabledApps;
|
|
QStringList m_allowedDnsServers;
|
|
bool m_killSwitchEnabled;
|
|
#if defined(MZ_ANDROID) || defined(MZ_IOS)
|
|
QString m_installationId;
|
|
#endif
|
|
|
|
QString m_junkPacketCount;
|
|
QString m_junkPacketMinSize;
|
|
QString m_junkPacketMaxSize;
|
|
QString m_initPacketJunkSize;
|
|
QString m_responsePacketJunkSize;
|
|
QString m_cookieReplyPacketJunkSize;
|
|
QString m_transportPacketJunkSize;
|
|
QString m_initPacketMagicHeader;
|
|
QString m_responsePacketMagicHeader;
|
|
QString m_underloadPacketMagicHeader;
|
|
QString m_transportPacketMagicHeader;
|
|
QMap<QString, QString> m_specialJunk;
|
|
QMap<QString, QString> m_controlledJunk;
|
|
QString m_specialHandshakeTimeout;
|
|
|
|
QJsonObject toJson() const;
|
|
QString toWgConf(
|
|
const QMap<QString, QString>& extra = QMap<QString, QString>()) const;
|
|
};
|
|
|
|
#endif // INTERFACECONFIG_H
|