mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-02 21:28:51 +00:00
fix vless tls flow
This commit is contained in:
parent
ba2eac5290
commit
2bf58288d3
1 changed files with 10 additions and 0 deletions
|
@ -515,6 +515,16 @@ namespace v2rayN.Handler
|
||||||
outbound.mux.enabled = false;
|
outbound.mux.enabled = false;
|
||||||
outbound.mux.concurrency = -1;
|
outbound.mux.concurrency = -1;
|
||||||
}
|
}
|
||||||
|
else if (node.streamSecurity == Global.StreamSecurity)
|
||||||
|
{
|
||||||
|
if (!Utils.IsNullOrEmpty(node.flow))
|
||||||
|
{
|
||||||
|
usersItem.flow = node.flow;
|
||||||
|
|
||||||
|
outbound.mux.enabled = false;
|
||||||
|
outbound.mux.concurrency = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
outbound.protocol = Global.vlessProtocolLite;
|
outbound.protocol = Global.vlessProtocolLite;
|
||||||
outbound.settings.servers = null;
|
outbound.settings.servers = null;
|
||||||
|
|
Loading…
Reference in a new issue