implement a caching reader needed for crypto streams

This commit is contained in:
Lucas Clemente 2016-04-18 10:59:10 +02:00
parent bc736feada
commit c430fbd5d4
3 changed files with 84 additions and 0 deletions

View file

@ -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