mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return a quic.ConnectionState from Session.ConnectionState()
This commit is contained in:
parent
021f70aac5
commit
356c69944e
7 changed files with 26 additions and 22 deletions
|
@ -170,7 +170,7 @@ var _ = Describe("Handshake tests", func() {
|
|||
data, err := ioutil.ReadAll(str)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(data).To(Equal(PRData))
|
||||
Expect(sess.ConnectionState().CipherSuite).To(Equal(suiteID))
|
||||
Expect(sess.ConnectionState().TLS.CipherSuite).To(Equal(suiteID))
|
||||
Expect(sess.CloseWithError(0, "")).To(Succeed())
|
||||
})
|
||||
}
|
||||
|
@ -369,7 +369,7 @@ var _ = Describe("Handshake tests", func() {
|
|||
sess, err := ln.Accept(context.Background())
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
cs := sess.ConnectionState()
|
||||
Expect(cs.NegotiatedProtocol).To(Equal(alpn))
|
||||
Expect(cs.TLS.NegotiatedProtocol).To(Equal(alpn))
|
||||
close(done)
|
||||
}()
|
||||
|
||||
|
@ -381,7 +381,7 @@ var _ = Describe("Handshake tests", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
defer sess.CloseWithError(0, "")
|
||||
cs := sess.ConnectionState()
|
||||
Expect(cs.NegotiatedProtocol).To(Equal(alpn))
|
||||
Expect(cs.TLS.NegotiatedProtocol).To(Equal(alpn))
|
||||
Eventually(done).Should(BeClosed())
|
||||
Expect(ln.Close()).To(Succeed())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue