mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
update mint
mint recently changed the signature of ExtensionList.Find.
This commit is contained in:
parent
a6eca911de
commit
14d4e5e9ec
13 changed files with 415 additions and 236 deletions
|
@ -48,7 +48,8 @@ var _ = Describe("TLS Extension Handler, for the server", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(el).To(HaveLen(1))
|
||||
ext := &tlsExtensionBody{}
|
||||
found := el.Find(ext)
|
||||
found, err := el.Find(ext)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(found).To(BeTrue())
|
||||
eetp := &encryptedExtensionsTransportParameters{}
|
||||
_, err = syntax.Unmarshal(ext.data, eetp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue