mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
send a reserved version number in version negotiation packets
This commit is contained in:
parent
1f5cd31569
commit
be29963637
6 changed files with 43 additions and 16 deletions
|
@ -21,9 +21,7 @@ func ComposeGQUICVersionNegotiation(connID protocol.ConnectionID, versions []pro
|
|||
utils.Errorf("error composing version negotiation packet: %s", err.Error())
|
||||
return nil
|
||||
}
|
||||
for _, v := range versions {
|
||||
utils.BigEndian.WriteUint32(fullReply, uint32(v))
|
||||
}
|
||||
writeVersions(fullReply, versions)
|
||||
return fullReply.Bytes()
|
||||
}
|
||||
|
||||
|
@ -48,8 +46,14 @@ func ComposeVersionNegotiation(
|
|||
utils.Errorf("error composing version negotiation packet: %s", err.Error())
|
||||
return nil
|
||||
}
|
||||
for _, v := range versions {
|
||||
utils.BigEndian.WriteUint32(fullReply, uint32(v))
|
||||
}
|
||||
writeVersions(fullReply, versions)
|
||||
return fullReply.Bytes()
|
||||
}
|
||||
|
||||
// writeVersions writes the versions for a Version Negotiation Packet.
|
||||
// It inserts one reserved version number at a random position.
|
||||
func writeVersions(buf *bytes.Buffer, supported []protocol.VersionNumber) {
|
||||
for _, v := range protocol.GetGreasedVersions(supported) {
|
||||
utils.BigEndian.WriteUint32(buf, uint32(v))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue