mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
use a chan instead of a context in Connection.HandshakeComplete (#3709)
This commit is contained in:
parent
41ddaa0262
commit
a4b0265628
14 changed files with 66 additions and 65 deletions
|
@ -40,7 +40,7 @@ var _ = Describe("early data", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.Close()).To(Succeed())
|
||||
// make sure the Write finished before the handshake completed
|
||||
Expect(conn.HandshakeComplete().Done()).ToNot(BeClosed())
|
||||
Expect(conn.HandshakeComplete()).ToNot(BeClosed())
|
||||
Eventually(conn.Context().Done()).Should(BeClosed())
|
||||
}()
|
||||
serverPort := ln.Addr().(*net.UDPAddr).Port
|
||||
|
|
|
@ -142,7 +142,7 @@ var _ = Describe("0-RTT", func() {
|
|||
_, err = str.Write(testdata)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(str.Close()).To(Succeed())
|
||||
<-conn.HandshakeComplete().Done()
|
||||
<-conn.HandshakeComplete()
|
||||
Expect(conn.ConnectionState().TLS.Used0RTT).To(BeTrue())
|
||||
io.ReadAll(str) // wait for the EOF from the server to arrive before closing the conn
|
||||
conn.CloseWithError(0, "")
|
||||
|
@ -302,7 +302,7 @@ var _ = Describe("0-RTT", func() {
|
|||
Expect(firstStr.Close()).To(Succeed())
|
||||
|
||||
// wait for the handshake to complete
|
||||
Eventually(conn.HandshakeComplete().Done()).Should(BeClosed())
|
||||
Eventually(conn.HandshakeComplete()).Should(BeClosed())
|
||||
str, err := conn.OpenUniStream()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
_, err = str.Write(PRData)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue