update to qtls based on Go 1.14's TLS implementation

This commit is contained in:
Marten Seemann 2020-02-27 14:55:22 +07:00
parent 42bf68205c
commit 6fe4878f0e
6 changed files with 122 additions and 20 deletions

View file

@ -103,7 +103,7 @@ var _ = Describe("Crypto Setup TLS", func() {
Expect(getCertificateErr).To(MatchError("GetCertificate"))
_, getClientCertificateErr := qtlsConf.GetClientCertificate(nil)
Expect(getClientCertificateErr).To(MatchError("GetClientCertificate"))
cconf, err := qtlsConf.GetConfigForClient(&tls.ClientHelloInfo{ServerName: "foo.bar"})
cconf, err := qtlsConf.GetConfigForClient(&qtls.ClientHelloInfo{ServerName: "foo.bar"})
Expect(err).ToNot(HaveOccurred())
Expect(cconf.ServerName).To(Equal("foo.bar"))
Expect(cconf.AlternativeRecordLayer).ToNot(BeNil())