mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
implement a caching reader needed for crypto streams
This commit is contained in:
parent
bc736feada
commit
c430fbd5d4
3 changed files with 84 additions and 0 deletions
|
@ -6,6 +6,19 @@ import (
|
|||
"io"
|
||||
)
|
||||
|
||||
// ReadStream is the read part of a QUIC stream
|
||||
type ReadStream interface {
|
||||
io.Reader
|
||||
io.ByteReader
|
||||
}
|
||||
|
||||
// Stream is the interface for QUIC streams
|
||||
type Stream interface {
|
||||
io.Reader
|
||||
io.ByteReader
|
||||
io.Writer
|
||||
}
|
||||
|
||||
// ReadUintN reads N bytes
|
||||
func ReadUintN(b io.ByteReader, length uint8) (uint64, error) {
|
||||
var res uint64
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue