mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 12:29:13 +00:00
fix the situation that causing quic setting become null when TLS is not enable
This commit is contained in:
parent
1e37dc0f4a
commit
4638e66c83
1 changed files with 1 additions and 1 deletions
|
@ -540,8 +540,8 @@ namespace v2rayN.Handler
|
||||||
quicsettings.key = config.path();
|
quicsettings.key = config.path();
|
||||||
quicsettings.header = new Header();
|
quicsettings.header = new Header();
|
||||||
quicsettings.header.type = config.headerType();
|
quicsettings.header.type = config.headerType();
|
||||||
streamSettings.tlsSettings.serverName = config.address();
|
|
||||||
streamSettings.quicSettings = quicsettings;
|
streamSettings.quicSettings = quicsettings;
|
||||||
|
streamSettings.tlsSettings.serverName = config.address();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
//tcp带http伪装
|
//tcp带http伪装
|
||||||
|
|
Loading…
Reference in a new issue