mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
add stream.StreamID()
This commit is contained in:
parent
967a5c401c
commit
9f63cdbd91
5 changed files with 17 additions and 0 deletions
|
@ -4,6 +4,8 @@ import (
|
|||
"bytes"
|
||||
"crypto/rand"
|
||||
"io"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
)
|
||||
|
||||
// ReadStream is the read part of a QUIC stream
|
||||
|
@ -18,6 +20,7 @@ type Stream interface {
|
|||
io.ByteReader
|
||||
io.Writer
|
||||
io.Closer
|
||||
StreamID() protocol.StreamID
|
||||
}
|
||||
|
||||
// ReadUintN reads N bytes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue