fix: ALPN not applied in uTLS/REALITY

This commit is contained in:
H1JK
2023-03-10 20:53:39 +08:00
parent 8c135e4a91
commit 913ed62095
3 changed files with 3 additions and 1 deletions

View File

@ -89,6 +89,7 @@ func copyConfig(c *tls.Config) *utls.Config {
return &utls.Config{
RootCAs: c.RootCAs,
ServerName: c.ServerName,
NextProtos: c.NextProtos,
InsecureSkipVerify: c.InsecureSkipVerify,
VerifyPeerCertificate: c.VerifyPeerCertificate,
}