initial commit

This commit is contained in:
ginuerzh
2021-03-30 22:34:01 +08:00
commit b74e4cc8a4
23 changed files with 925 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package listener
import "net"
// Listener is a server listener, just like a net.Listener.
type Listener interface {
Init(md Metadata) error
net.Listener
}
// Accepter represents a network endpoint that can accept connection from peer.
type Accepter interface {
Accept() (net.Conn, error)
}