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
|
@ -19,13 +19,12 @@ type connIDGenerator struct {
|
|||
length int
|
||||
}
|
||||
|
||||
func (c *connIDGenerator) GenerateConnectionID() ([]byte, error) {
|
||||
func (c *connIDGenerator) GenerateConnectionID() (quic.ConnectionID, error) {
|
||||
b := make([]byte, c.length)
|
||||
_, err := rand.Read(b)
|
||||
if err != nil {
|
||||
if _, err := rand.Read(b); err != nil {
|
||||
fmt.Fprintf(GinkgoWriter, "generating conn ID failed: %s", err)
|
||||
}
|
||||
return b, nil
|
||||
return protocol.ParseConnectionID(b), nil
|
||||
}
|
||||
|
||||
func (c *connIDGenerator) ConnectionIDLen() int {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue