mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
copy VerifyPeerCertificate from the tls.Config to the mint.Config
This commit is contained in:
parent
d0a394430f
commit
e16131b391
2 changed files with 19 additions and 14 deletions
|
@ -76,6 +76,7 @@ func tlsToMintConfig(tlsConf *tls.Config, pers protocol.Perspective) (*mint.Conf
|
|||
mconf.ServerName = tlsConf.ServerName
|
||||
mconf.InsecureSkipVerify = tlsConf.InsecureSkipVerify
|
||||
mconf.Certificates = make([]*mint.Certificate, len(tlsConf.Certificates))
|
||||
mconf.VerifyPeerCertificate = tlsConf.VerifyPeerCertificate
|
||||
for i, certChain := range tlsConf.Certificates {
|
||||
mconf.Certificates[i] = &mint.Certificate{
|
||||
Chain: make([]*x509.Certificate, len(certChain.Certificate)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue