change the source connection ID when creating a new IETF QUIC session

This commit is contained in:
Marten Seemann 2018-05-17 13:33:02 +09:00
parent 8bfb29f06e
commit d7dee33bc7
5 changed files with 35 additions and 51 deletions

View file

@ -146,7 +146,11 @@ var _ = Describe("Stateless TLS handling", func() {
Expect(conn.dataWritten.Len()).To(BeZero())
close(done)
}()
Eventually(sessionChan).Should(Receive())
var tlsSess tlsSession
Eventually(sessionChan).Should(Receive(&tlsSess))
// make sure we're using a server-generated connection ID
Expect(tlsSess.connID).ToNot(Equal(hdr.SrcConnectionID))
Expect(tlsSess.connID).ToNot(Equal(hdr.DestConnectionID))
Eventually(done).Should(BeClosed())
})