mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
create Session interface
This commit is contained in:
parent
e924f0ecb3
commit
a96211f724
7 changed files with 389 additions and 362 deletions
25
interface.go
Normal file
25
interface.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"net"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
"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
|
||||
// TODO: remove this
|
||||
GetOrOpenStream(protocol.StreamID) (utils.Stream, error)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue