mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37: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
|
@ -49,6 +49,13 @@ var _ = Describe("Packing and unpacking Initial packets", func() {
|
|||
Expect(mintConf.ServerName).To(Equal("www.example.com"))
|
||||
})
|
||||
|
||||
It("sets InsecureSkipVerify", func() {
|
||||
conf := &tls.Config{InsecureSkipVerify: true}
|
||||
mintConf, err := tlsToMintConfig(conf, protocol.PerspectiveClient)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(mintConf.InsecureSkipVerify).To(BeTrue())
|
||||
})
|
||||
|
||||
It("sets the certificate chain", func() {
|
||||
tlsConf := testdata.GetTLSConfig()
|
||||
mintConf, err := tlsToMintConfig(tlsConf, protocol.PerspectiveClient)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue