mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix buffer size for version negotiation packets
This commit is contained in:
parent
3f9212b5f7
commit
1f4335ffce
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ func ComposeGQUICVersionNegotiation(connID protocol.ConnectionID, versions []pro
|
||||||
// ComposeVersionNegotiation composes a Version Negotiation according to the IETF draft
|
// ComposeVersionNegotiation composes a Version Negotiation according to the IETF draft
|
||||||
func ComposeVersionNegotiation(destConnID, srcConnID protocol.ConnectionID, versions []protocol.VersionNumber) ([]byte, error) {
|
func ComposeVersionNegotiation(destConnID, srcConnID protocol.ConnectionID, versions []protocol.VersionNumber) ([]byte, error) {
|
||||||
greasedVersions := protocol.GetGreasedVersions(versions)
|
greasedVersions := protocol.GetGreasedVersions(versions)
|
||||||
buf := bytes.NewBuffer(make([]byte, 0, 1+8+4+len(greasedVersions)*4))
|
expectedLen := 1 /* type byte */ + 4 /* version field */ + 1 /* connection ID length field */ + destConnID.Len() + srcConnID.Len() + len(greasedVersions)*4
|
||||||
|
buf := bytes.NewBuffer(make([]byte, 0, expectedLen))
|
||||||
r := make([]byte, 1)
|
r := make([]byte, 1)
|
||||||
_, _ = rand.Read(r) // ignore the error here. It is not critical to have perfect random here.
|
_, _ = rand.Read(r) // ignore the error here. It is not critical to have perfect random here.
|
||||||
buf.WriteByte(r[0] | 0x80)
|
buf.WriteByte(r[0] | 0x80)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue