mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37: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
|
@ -20,11 +20,12 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
queuedFrames []wire.Frame
|
||||
g *connIDGenerator
|
||||
)
|
||||
initialConnID := protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7}
|
||||
initialClientDestConnID := protocol.ConnectionID{0xa, 0xb, 0xc, 0xd, 0xe}
|
||||
initialConnID := protocol.ParseConnectionID([]byte{1, 2, 3, 4, 5, 6, 7})
|
||||
initialClientDestConnID := protocol.ParseConnectionID([]byte{0xa, 0xb, 0xc, 0xd, 0xe})
|
||||
|
||||
connIDToToken := func(c protocol.ConnectionID) protocol.StatelessResetToken {
|
||||
return protocol.StatelessResetToken{c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0], c[0]}
|
||||
b := c.Bytes()[0]
|
||||
return protocol.StatelessResetToken{b, b, b, b, b, b, b, b, b, b, b, b, b, b, b, b}
|
||||
}
|
||||
|
||||
BeforeEach(func() {
|
||||
|
@ -35,7 +36,7 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
replacedWithClosed = nil
|
||||
g = newConnIDGenerator(
|
||||
initialConnID,
|
||||
initialClientDestConnID,
|
||||
&initialClientDestConnID,
|
||||
func(c protocol.ConnectionID) { addedConnIDs = append(addedConnIDs, c) },
|
||||
connIDToToken,
|
||||
func(c protocol.ConnectionID) { removedConnIDs = append(removedConnIDs, c) },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue