mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +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
|
@ -224,13 +224,13 @@ func getFrames() []wire.Frame {
|
|||
&wire.NewConnectionIDFrame{
|
||||
SequenceNumber: seq1,
|
||||
RetirePriorTo: seq1 / 2,
|
||||
ConnectionID: getRandomData(4),
|
||||
ConnectionID: protocol.ParseConnectionID(getRandomData(4)),
|
||||
StatelessResetToken: token1,
|
||||
},
|
||||
&wire.NewConnectionIDFrame{
|
||||
SequenceNumber: seq2,
|
||||
RetirePriorTo: seq2,
|
||||
ConnectionID: getRandomData(17),
|
||||
ConnectionID: protocol.ParseConnectionID(getRandomData(17)),
|
||||
StatelessResetToken: token2,
|
||||
},
|
||||
}...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue