rename ReadVarint / WriteVarInt / VarIntLen to Read / Write / Len

This commit is contained in:
Marten Seemann 2021-01-01 11:40:53 +08:00
parent 11c5045065
commit f9226887b4
46 changed files with 298 additions and 298 deletions

View file

@ -188,7 +188,7 @@ func (h *Header) parseLongHeader(b *bytes.Reader) error {
}
if h.Type == protocol.PacketTypeInitial {
tokenLen, err := quicvarint.ReadVarInt(b)
tokenLen, err := quicvarint.Read(b)
if err != nil {
return err
}
@ -201,7 +201,7 @@ func (h *Header) parseLongHeader(b *bytes.Reader) error {
}
}
pl, err := quicvarint.ReadVarInt(b)
pl, err := quicvarint.Read(b)
if err != nil {
return err
}