mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
quicvarint: add Reader and Writer interfaces (#3233)
This commit is contained in:
parent
79ce9740a4
commit
346bd63a60
6 changed files with 171 additions and 53 deletions
|
@ -148,7 +148,7 @@ func (c *client) handleUnidirectionalStreams() {
|
|||
}
|
||||
|
||||
go func() {
|
||||
streamType, err := quicvarint.Read(&byteReaderImpl{str})
|
||||
streamType, err := quicvarint.Read(quicvarint.NewReader(str))
|
||||
if err != nil {
|
||||
c.logger.Debugf("reading stream type on stream %d failed: %s", str.StreamID(), err)
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue