feat: V2Ray AllowInsecure Setting

This commit is contained in:
ChsBuffer
2020-10-21 22:09:53 +08:00
parent 3d49fe0338
commit d4b97a99e0

View File

@@ -244,7 +244,7 @@ namespace Netch.Servers.VMess.Utils
var tlsSettings = new TlsSettings
{
allowInsecure = true
allowInsecure = Global.Settings.V2RayConfig.AllowInsecure
};
if (!string.IsNullOrWhiteSpace(host))
{
@@ -330,7 +330,7 @@ namespace Netch.Servers.VMess.Utils
var xtlsSettings = new TlsSettings
{
allowInsecure = true
allowInsecure = Global.Settings.V2RayConfig.AllowInsecure
};
if (!string.IsNullOrWhiteSpace(host))
{