mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
move utils.Stream to quic.Stream
This commit is contained in:
parent
592ef45fdf
commit
cd465ae0b5
17 changed files with 73 additions and 80 deletions
19
interface.go
19
interface.go
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue