Fix missing TLS setting in VMess nodes

This commit is contained in:
Tindy X 2021-03-25 18:15:33 +08:00
parent 9b32b72f0e
commit 3afe9986be
No known key found for this signature in database
GPG Key ID: C6AD413169968D58

View File

@ -58,6 +58,7 @@ void vmessConstruct(Proxy &node, const std::string &group, const std::string &re
}
node.FakeType = type;
}
node.TLSSecure = tls == "tls";
}
void ssrConstruct(Proxy &node, const std::string &group, const std::string &remarks, const std::string &server, const std::string &port, const std::string &protocol, const std::string &method, const std::string &obfs, const std::string &password, const std::string &obfsparam, const std::string &protoparam, tribool udp, tribool tfo, tribool scv)