mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-20 02:00:55 +07:00
54f67b3d82
* 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>
74 lines
1.7 KiB
C++
74 lines
1.7 KiB
C++
#ifndef ROUTERWIN_H
|
|
#define ROUTERWIN_H
|
|
|
|
#include <QTimer>
|
|
#include <QString>
|
|
#include <QSettings>
|
|
#include <QHash>
|
|
#include <QDebug>
|
|
#include <QObject>
|
|
#include <QNetworkInterface>
|
|
|
|
#include "../client/platforms/windows/daemon/dnsutilswindows.h"
|
|
|
|
#include <WinSock2.h> //includes Windows.h
|
|
#include <WS2tcpip.h>
|
|
|
|
#include <iphlpapi.h>
|
|
#include <IcmpAPI.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include <stdint.h>
|
|
//typedef uint8_t u8_t ;
|
|
|
|
//#ifndef WIN32_LEAN_AND_MEAN
|
|
//#define WIN32_LEAN_AND_MEAN
|
|
//#endif
|
|
|
|
/**
|
|
* @brief The Router class - General class for handling ip routing
|
|
*/
|
|
class RouterWin : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static RouterWin& Instance();
|
|
|
|
int routeAddList(const QString &gw, const QStringList &ips);
|
|
bool clearSavedRoutes();
|
|
int routeDeleteList(const QString &gw, const QStringList &ips);
|
|
bool flushDns();
|
|
void resetIpStack();
|
|
|
|
bool StartRoutingIpv6();
|
|
bool StopRoutingIpv6();
|
|
|
|
void suspendWcmSvc(bool suspend);
|
|
bool updateResolvers(const QString& ifname, const QList<QHostAddress>& resolvers);
|
|
bool restoreResolvers();
|
|
|
|
private:
|
|
static QList<QString> kIpv6Subnets;
|
|
|
|
RouterWin(RouterWin const &) = delete;
|
|
RouterWin& operator= (RouterWin const&) = delete;
|
|
|
|
DWORD GetServicePid(LPCWSTR serviceName);
|
|
BOOL ListProcessThreads(DWORD dwOwnerPID);
|
|
BOOL EnableDebugPrivilege();
|
|
BOOL InitNtFunctions();
|
|
BOOL SuspendProcess(BOOL fSuspend, DWORD dwProcessId);
|
|
|
|
QNetworkInterface findLoopbackIface();
|
|
|
|
private:
|
|
RouterWin() {m_dnsUtil = new DnsUtilsWindows(this);}
|
|
QMultiMap<QString, MIB_IPFORWARDROW> m_ipForwardRows;
|
|
bool m_suspended = false;
|
|
DnsUtilsWindows *m_dnsUtil;
|
|
};
|
|
|
|
#endif // ROUTERWIN_H
|