mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* feat: integrated xray as a library and added split-tunneling * fix: added copying amnezia_xray.dll to build dir * fix: changed path on darwin * chore: clean up getting default device * chore: removed WSAGetLastError from sockopt logging * fix: get rid of debug logs in xray handlers * fix: minor fixes and xray debugging capabilities * fix: macos default interface fix * fix: roll-back ipv6 sockopt for mac * fix: bind IPv6 on Windows * fix: (win) better IPv6 handling and router fixes * feat: prebuilts uploaded * fix: removed redundant cmake definitions * feat: moved xray to service process, reworked errors * fix: return values in networkUtilities * fix: macos build fixes * fix: (windows) cmake fixes * fix: (windows) compilation fix * fix: (windows) changed location of amnezia_xray.dll * feat: xray logs added to system service * chore: bump xray&tun2socks versions for android * chore: cleanup of XrayProtocol class * removed killswitch * removed redundant members and basic cleanup * feat: support split-tunneling in iOS and macOS NE * chore: update active interface index based on network path and available interfaces * refactor: update network path handling and logging in PacketTunnelProvider * chore: bump xray deps --------- Co-authored-by: Yaroslav Yashin <yaroslav.yashin@gmail.com>
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
#ifndef NETWORKUTILITIES_H
|
|
#define NETWORKUTILITIES_H
|
|
|
|
#include <QRegularExpression>
|
|
#include <QRegExp>
|
|
#include <QString>
|
|
#include <QHostAddress>
|
|
#include <QNetworkReply>
|
|
#include <QtNetwork/qnetworkinterface.h>
|
|
|
|
class NetworkUtilities : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static QString getIPAddress(const QString &host);
|
|
static QString getStringBetween(const QString &s, const QString &a, const QString &b);
|
|
static bool checkIPv4Format(const QString &ip);
|
|
static bool checkIpSubnetFormat(const QString &ip);
|
|
static bool checkIpv6Enabled();
|
|
static QPair<QString, QNetworkInterface> getGatewayAndIface();
|
|
// Returns the Interface Index that could Route to dst
|
|
static int AdapterIndexTo(const QHostAddress& dst);
|
|
|
|
static QRegularExpression ipAddressRegExp();
|
|
static QRegularExpression ipAddressPortRegExp();
|
|
static QRegExp ipAddressWithSubnetRegExp();
|
|
static QRegExp ipNetwork24RegExp();
|
|
static QRegExp ipPortRegExp();
|
|
static QRegExp domainRegExp();
|
|
|
|
static QString netMaskFromIpWithSubnet(const QString ip);
|
|
static QString ipAddressFromIpWithSubnet(const QString ip);
|
|
static QStringList summarizeRoutes(const QStringList &ips, const QString cidr);
|
|
};
|
|
|
|
#endif // NETWORKUTILITIES_H
|