mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
22 lines
601 B
Go
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
|
|
}
|