mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use an array instead of a byte slice for Connection IDs
This commit is contained in:
parent
9e0f9e62ff
commit
1aced95d41
47 changed files with 530 additions and 487 deletions
|
@ -89,7 +89,10 @@ var _ = Describe("Framer", func() {
|
|||
|
||||
It("drops *_BLOCKED frames when 0-RTT is rejected", func() {
|
||||
ping := &wire.PingFrame{}
|
||||
ncid := &wire.NewConnectionIDFrame{SequenceNumber: 10, ConnectionID: protocol.ConnectionID{0xde, 0xad, 0xbe, 0xef}}
|
||||
ncid := &wire.NewConnectionIDFrame{
|
||||
SequenceNumber: 10,
|
||||
ConnectionID: protocol.ParseConnectionID([]byte{0xde, 0xad, 0xbe, 0xef}),
|
||||
}
|
||||
frames := []wire.Frame{
|
||||
&wire.DataBlockedFrame{MaximumData: 1337},
|
||||
&wire.StreamDataBlockedFrame{StreamID: 42, MaximumStreamData: 1337},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue