mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
save version numbers such that can be written in big endian
This makes the version number representation consistent with the IETF draft.
This commit is contained in:
parent
e81795e49b
commit
d98a11bb35
18 changed files with 68 additions and 65 deletions
|
@ -21,7 +21,7 @@ func ComposeVersionNegotiation(connectionID protocol.ConnectionID, versions []pr
|
|||
utils.Errorf("error composing version negotiation packet: %s", err.Error())
|
||||
}
|
||||
for _, v := range versions {
|
||||
utils.LittleEndian.WriteUint32(fullReply, protocol.VersionNumberToTag(v))
|
||||
utils.BigEndian.WriteUint32(fullReply, uint32(v))
|
||||
}
|
||||
return fullReply.Bytes()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue