mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
implement a Listener.Accept() method
This commit is contained in:
parent
0bd3b61e6a
commit
30a0211243
6 changed files with 104 additions and 121 deletions
|
@ -79,6 +79,6 @@ type Listener interface {
|
|||
Close() error
|
||||
// Addr returns the local network addr that the server is listening on.
|
||||
Addr() net.Addr
|
||||
// Serve starts the main server loop, and blocks until a network error occurs or the server is closed.
|
||||
Serve() error
|
||||
// Accept returns new sessions. It should be called in a loop.
|
||||
Accept() (Session, error)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue