mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
quicvarint: remove deprecated Write function (#3781)
This commit is contained in:
parent
5d54c0b82c
commit
5aa2beb706
1 changed files with 0 additions and 19 deletions
|
@ -70,25 +70,6 @@ func Read(r io.ByteReader) (uint64, error) {
|
||||||
return uint64(b8) + uint64(b7)<<8 + uint64(b6)<<16 + uint64(b5)<<24 + uint64(b4)<<32 + uint64(b3)<<40 + uint64(b2)<<48 + uint64(b1)<<56, nil
|
return uint64(b8) + uint64(b7)<<8 + uint64(b6)<<16 + uint64(b5)<<24 + uint64(b4)<<32 + uint64(b3)<<40 + uint64(b2)<<48 + uint64(b1)<<56, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write writes i in the QUIC varint format to w.
|
|
||||||
// Deprecated: use Append instead.
|
|
||||||
func Write(w Writer, i uint64) {
|
|
||||||
if i <= maxVarInt1 {
|
|
||||||
w.WriteByte(uint8(i))
|
|
||||||
} else if i <= maxVarInt2 {
|
|
||||||
w.Write([]byte{uint8(i>>8) | 0x40, uint8(i)})
|
|
||||||
} else if i <= maxVarInt4 {
|
|
||||||
w.Write([]byte{uint8(i>>24) | 0x80, uint8(i >> 16), uint8(i >> 8), uint8(i)})
|
|
||||||
} else if i <= maxVarInt8 {
|
|
||||||
w.Write([]byte{
|
|
||||||
uint8(i>>56) | 0xc0, uint8(i >> 48), uint8(i >> 40), uint8(i >> 32),
|
|
||||||
uint8(i >> 24), uint8(i >> 16), uint8(i >> 8), uint8(i),
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
panic(fmt.Sprintf("%#x doesn't fit into 62 bits", i))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Append appends i in the QUIC varint format.
|
// Append appends i in the QUIC varint format.
|
||||||
func Append(b []byte, i uint64) []byte {
|
func Append(b []byte, i uint64) []byte {
|
||||||
if i <= maxVarInt1 {
|
if i <= maxVarInt1 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue