mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
change the source connection ID when creating a new IETF QUIC session
This commit is contained in:
parent
8bfb29f06e
commit
d7dee33bc7
5 changed files with 35 additions and 51 deletions
|
@ -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())
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue