mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add the stylecheck linter
This commit is contained in:
parent
ab2b26a5cb
commit
6b22f36d82
19 changed files with 30 additions and 20 deletions
|
@ -215,9 +215,11 @@ func (h *Header) parseLongHeader(b *bytes.Reader) error {
|
|||
|
||||
func (h *Header) parseVersionNegotiationPacket(b *bytes.Reader) error {
|
||||
if b.Len() == 0 {
|
||||
//nolint:stylecheck
|
||||
return errors.New("Version Negotiation packet has empty version list")
|
||||
}
|
||||
if b.Len()%4 != 0 {
|
||||
//nolint:stylecheck
|
||||
return errors.New("Version Negotiation packet has a version list with an invalid length")
|
||||
}
|
||||
h.SupportedVersions = make([]protocol.VersionNumber, b.Len()/4)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue