mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
make EarlyListener a struct, not an interface
This commit is contained in:
parent
1b64b13750
commit
86a1234c87
13 changed files with 174 additions and 164 deletions
11
interface.go
11
interface.go
|
@ -345,14 +345,3 @@ type ConnectionState struct {
|
|||
SupportsDatagrams bool
|
||||
Version VersionNumber
|
||||
}
|
||||
|
||||
// An EarlyListener listens for incoming QUIC connections,
|
||||
// and returns them before the handshake completes.
|
||||
type EarlyListener interface {
|
||||
// Close the server. All active connections will be closed.
|
||||
Close() error
|
||||
// Addr returns the local network addr that the server is listening on.
|
||||
Addr() net.Addr
|
||||
// Accept returns new early connections. It should be called in a loop.
|
||||
Accept(context.Context) (EarlyConnection, error)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue