move utils.Stream to quic.Stream

This commit is contained in:
Marten Seemann 2017-02-20 18:05:49 +07:00
parent 592ef45fdf
commit cd465ae0b5
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
17 changed files with 73 additions and 80 deletions

View file

@ -2,21 +2,32 @@ package quic
import (
"crypto/tls"
"io"
"net"
"github.com/lucas-clemente/quic-go/utils"
"github.com/lucas-clemente/quic-go/protocol"
)
// Stream is the interface for QUIC streams
type Stream interface {
io.Reader
io.Writer
io.Closer
StreamID() protocol.StreamID
CloseRemote(offset protocol.ByteCount)
Reset(error)
}
// A Session is a QUIC Session
type Session interface {
// get the next stream opened by the client
// first stream returned has StreamID 3
AcceptStream() (utils.Stream, error)
AcceptStream() (Stream, error)
// guaranteed to return the smallest unopened stream
// special error for "too many streams, retry later"
OpenStream() (utils.Stream, error)
OpenStream() (Stream, error)
// blocks until a new stream can be opened, if the maximum number of stream is opened
OpenStreamSync() (utils.Stream, error)
OpenStreamSync() (Stream, error)
RemoteAddr() net.Addr
Close(error) error
}