mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename ReadVarint / WriteVarInt / VarIntLen to Read / Write / Len
This commit is contained in:
parent
11c5045065
commit
f9226887b4
46 changed files with 298 additions and 298 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue