mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
19 lines
1.3 KiB
C++
19 lines
1.3 KiB
C++
#pragma once
|
|
|
|
namespace Preset {
|
|
namespace SingBox {
|
|
inline QStringList VpnImplementation = {"gvisor", "system", "mixed"};
|
|
inline QStringList DomainStrategy = {"", "ipv4_only", "ipv6_only", "prefer_ipv4", "prefer_ipv6"};
|
|
inline QStringList UtlsFingerPrint = {"", "chrome", "firefox", "edge", "safari", "360", "qq", "ios", "android", "random", "randomized"};
|
|
inline QStringList ShadowsocksMethods = {"2022-blake3-aes-128-gcm", "2022-blake3-aes-256-gcm", "2022-blake3-chacha20-poly1305", "none", "aes-128-gcm", "aes-192-gcm", "aes-256-gcm", "chacha20-ietf-poly1305", "xchacha20-ietf-poly1305", "aes-128-ctr", "aes-192-ctr", "aes-256-ctr", "aes-128-cfb", "aes-192-cfb", "aes-256-cfb", "rc4-md5", "chacha20-ietf", "xchacha20"};
|
|
inline QStringList Flows = {"xtls-rprx-vision"};
|
|
} // namespace SingBox
|
|
|
|
namespace Windows {
|
|
inline QStringList system_proxy_format{"{ip}:{http_port}",
|
|
"socks={ip}:{socks_port}",
|
|
"http={ip}:{http_port};https={ip}:{http_port};ftp={ip}:{http_port};socks={ip}:{socks_port}",
|
|
"http=http://{ip}:{http_port};https=http://{ip}:{http_port}"};
|
|
} // namespace Windows
|
|
} // namespace Preset
|