mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
sync: quic-go 0.42.0
Signed-off-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
parent
d40dde9b9b
commit
4973374ea5
252 changed files with 13121 additions and 5437 deletions
|
@ -14,7 +14,7 @@ var _ = Describe("Frame parsing", func() {
|
|||
var parser FrameParser
|
||||
|
||||
BeforeEach(func() {
|
||||
parser = NewFrameParser(true)
|
||||
parser = *NewFrameParser(true)
|
||||
})
|
||||
|
||||
It("returns nil if there's nothing more to read", func() {
|
||||
|
@ -315,7 +315,7 @@ var _ = Describe("Frame parsing", func() {
|
|||
})
|
||||
|
||||
It("errors when DATAGRAM frames are not supported", func() {
|
||||
parser = NewFrameParser(false)
|
||||
parser = *NewFrameParser(false)
|
||||
f := &DatagramFrame{Data: []byte("foobar")}
|
||||
b, err := f.Append(nil, protocol.Version1)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue