mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
fix typos in error messages when parsing Version Negotiation packets
This commit is contained in:
parent
0333f424bb
commit
4fe0f6752c
2 changed files with 4 additions and 4 deletions
|
@ -208,10 +208,10 @@ func (h *Header) parseLongHeader(b *bytes.Reader) error {
|
|||
|
||||
func (h *Header) parseVersionNegotiationPacket(b *bytes.Reader) error {
|
||||
if b.Len() == 0 {
|
||||
return errors.New("Version Negoation packet has empty version list")
|
||||
return errors.New("Version Negotiation packet has empty version list")
|
||||
}
|
||||
if b.Len()%4 != 0 {
|
||||
return errors.New("Version Negotation packet has a version list with an invalid length")
|
||||
return errors.New("Version Negotiation packet has a version list with an invalid length")
|
||||
}
|
||||
h.SupportedVersions = make([]protocol.VersionNumber, b.Len()/4)
|
||||
for i := 0; b.Len() > 0; i++ {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue