create Session interface

This commit is contained in:
Marten Seemann 2017-02-17 12:02:00 +07:00
parent e924f0ecb3
commit a96211f724
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
7 changed files with 389 additions and 362 deletions

25
interface.go Normal file
View 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)
}