Add skip_cert_verify support in Quantumult X (#144)

This commit is contained in:
Tony.Shao 2020-04-23 00:28:38 +08:00 committed by GitHub
parent 8662aa36cc
commit e5f7352940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2107,6 +2107,8 @@ void netchToQuanX(std::vector<nodeInfo> &nodes, INIReader &ini, std::vector<rule
proxyStr += ", fast-open=true";
if(ext.udp)
proxyStr += ", udp-relay=true";
if(ext.skip_cert_verify)
proxyStr += ", tls-verification=false";
proxyStr += ", tag=" + remark;
ini.Set("{NONAME}", proxyStr);