mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
f9b106cf5b
* fix: fixed country model update * fix: fixed context menu crush on ios * fix: fixed passphrase dialog freeze * fix: fixed country switch * fix: fixed start minimized * fix: fixed black screen after remove container * refactor: return cloak and ss only for view * fix: fixed default server change after improt while connected * fix: divider visibility * fix: fixed revoke admin user * fix: fixed language restore after backup * fix: link hover for tor settings page * fix: fixed openvpn connecntion status * fix: fixed free color status * fix: fixed client config update * chore: bump version
41 lines
698 B
C++
41 lines
698 B
C++
#ifndef CONTAINERENUM_H
|
|
#define CONTAINERENUM_H
|
|
|
|
#include <QMetaEnum>
|
|
#include <QObject>
|
|
|
|
namespace amnezia
|
|
{
|
|
namespace ContainerEnumNS
|
|
{
|
|
Q_NAMESPACE
|
|
enum DockerContainer {
|
|
None = 0,
|
|
Awg,
|
|
Awg2,
|
|
WireGuard,
|
|
OpenVpn,
|
|
Cloak,
|
|
ShadowSocks,
|
|
Ipsec,
|
|
Xray,
|
|
SSXray,
|
|
|
|
// non-vpn
|
|
TorWebSite,
|
|
Dns,
|
|
Sftp,
|
|
Socks5Proxy,
|
|
MtProxy,
|
|
Telemt,
|
|
};
|
|
Q_ENUM_NS(DockerContainer)
|
|
} // namespace ContainerEnumNS
|
|
|
|
using namespace ContainerEnumNS;
|
|
}
|
|
|
|
#endif // CONTAINERENUM_H
|
|
|
|
|