mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
add a quic.Config option to set the handshake timeout
This commit is contained in:
parent
a025e89f03
commit
9040fd25e7
9 changed files with 47 additions and 13 deletions
|
@ -1403,7 +1403,7 @@ var _ = Describe("Session", func() {
|
|||
})
|
||||
|
||||
It("times out due to non-completed crypto handshake", func(done Done) {
|
||||
sess.sessionCreationTime = time.Now().Add(-time.Hour)
|
||||
sess.sessionCreationTime = time.Now().Add(-protocol.DefaultHandshakeTimeout).Add(-time.Second)
|
||||
sess.run() // Would normally not return
|
||||
Expect(mconn.written[0]).To(ContainSubstring("Crypto handshake did not complete in time."))
|
||||
Expect(sess.runClosed).To(BeClosed())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue