mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
copy InsecureSkipVerify from the tls.Config to the mint.Config
mint now supports InsecureSkipVerify.
This commit is contained in:
parent
97413c5281
commit
706a828e16
2 changed files with 8 additions and 0 deletions
|
@ -74,6 +74,7 @@ func tlsToMintConfig(tlsConf *tls.Config, pers protocol.Perspective) (*mint.Conf
|
|||
}
|
||||
if tlsConf != nil {
|
||||
mconf.ServerName = tlsConf.ServerName
|
||||
mconf.InsecureSkipVerify = tlsConf.InsecureSkipVerify
|
||||
mconf.Certificates = make([]*mint.Certificate, len(tlsConf.Certificates))
|
||||
for i, certChain := range tlsConf.Certificates {
|
||||
mconf.Certificates[i] = &mint.Certificate{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue