implement a Listener.Accept() method

This commit is contained in:
Marten Seemann 2017-05-05 15:45:57 +08:00
parent 0bd3b61e6a
commit 30a0211243
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
6 changed files with 104 additions and 121 deletions

View file

@ -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)
}