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:
Marten Seemann 2022-08-28 13:28:11 +03:00
parent d7097d74f0
commit 21b9ef03be
4 changed files with 110 additions and 0 deletions

View file

@ -7,6 +7,19 @@ import (
"io"
)
// An ArbitraryLenConnectionID is a QUIC Connection ID able to represent Connection IDs according to RFC 8999.
// Future QUIC versions might allow connection ID lengths up to 255 bytes, while QUIC v1
// restricts the length to 20 bytes.
type ArbitraryLenConnectionID []byte
func (c ArbitraryLenConnectionID) Len() int {
return len(c)
}
func (c ArbitraryLenConnectionID) Bytes() []byte {
return c
}
// A ConnectionID in QUIC
type ConnectionID []byte