mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add a type for arbitrary length Connection IDs, and parsing function
RFC 8999 allows Connection IDs of up to 255 bytes. Current QUIC versions only use up to 20 bytes.
This commit is contained in:
parent
d7097d74f0
commit
21b9ef03be
4 changed files with 110 additions and 0 deletions
|
@ -2,6 +2,7 @@ package protocol
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto/rand"
|
||||
"io"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
|
@ -105,4 +106,18 @@ var _ = Describe("Connection ID generation", func() {
|
|||
var c ConnectionID
|
||||
Expect(c.String()).To(Equal("(empty)"))
|
||||
})
|
||||
|
||||
Context("arbitrary length connection IDs", func() {
|
||||
It("returns the bytes", func() {
|
||||
b := make([]byte, 30)
|
||||
rand.Read(b)
|
||||
c := ArbitraryLenConnectionID(b)
|
||||
Expect(c.Bytes()).To(Equal(b))
|
||||
})
|
||||
|
||||
It("returns the length", func() {
|
||||
c := ArbitraryLenConnectionID(make([]byte, 156))
|
||||
Expect(c.Len()).To(Equal(156))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue