uquic/interface.go
2017-02-22 23:03:07 +07:00

22 lines
601 B
Go

package quic
import (
"net"
"github.com/lucas-clemente/quic-go/utils"
)
// 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)
// guaranteed to return the smallest unopened stream
// special error for "too many streams, retry later"
OpenStream() (utils.Stream, error)
// TODO: implement this
// blocks until a new stream can be opened, if the maximum number of stream is opened
// OpenStreamSync() (utils.Stream, error)
RemoteAddr() net.Addr
Close(error) error
}