mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
85b6b06cc9
- trafic masking
20 lines
468 B
C++
20 lines
468 B
C++
#ifndef SERVER_DEFS_H
|
|
#define SERVER_DEFS_H
|
|
|
|
#include <QObject>
|
|
#include "core/defs.h"
|
|
|
|
namespace amnezia {
|
|
namespace server {
|
|
QString getContainerName(amnezia::DockerContainer container);
|
|
QString getDockerfileFolder(amnezia::DockerContainer container);
|
|
|
|
static QString vpnDefaultSubnetIp() { return "10.8.0.0"; }
|
|
static QString vpnDefaultSubnetMask() { return "255.255.255.0"; }
|
|
static QString vpnDefaultSubnetMaskVal() { return "24"; }
|
|
|
|
}
|
|
}
|
|
|
|
#endif // SERVER_DEFS_H
|