1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00

feat: copy some certificate related options for uTLS (#3240)

This commit is contained in:
秋野かえで 2024-12-09 05:44:37 +08:00 committed by GitHub
parent a72c4d2644
commit 9ccb080dcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -111,6 +111,10 @@ func uTLSConfigFromTLSConfig(config *systls.Config) (*utls.Config, error) { // n
RootCAs: config.RootCAs,
NextProtos: config.NextProtos,
ServerName: config.ServerName,
VerifyPeerCertificate: config.VerifyPeerCertificate,
InsecureSkipVerify: config.InsecureSkipVerify,
ClientAuth: utls.ClientAuthType(config.ClientAuth),
ClientCAs: config.ClientCAs,
}
return uconfig, nil
}