add a TLSClientConfig to the QUIC RoundTripper

fixes #407
This commit is contained in:
Marten Seemann 2017-02-04 09:12:35 +07:00
parent e9666c6313
commit 268841f0cc
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
10 changed files with 28 additions and 14 deletions

View file

@ -48,7 +48,7 @@ var _ = Describe("Client", func() {
It("creates a new client", func() {
var err error
client, err = NewClient("quic.clemente.io:1337", nil, nil)
client, err = NewClient("quic.clemente.io:1337", nil, nil, nil)
Expect(err).ToNot(HaveOccurred())
Expect(client.hostname).To(Equal("quic.clemente.io"))
Expect(*(*[]protocol.VersionNumber)(unsafe.Pointer(reflect.ValueOf(client.session.(*Session).cryptoSetup).Elem().FieldByName("negotiatedVersions").UnsafeAddr()))).To(BeNil())