2021-08-01 00:35:37 +08:00
|
|
|
package constant
|
|
|
|
|
2022-11-11 22:44:44 +08:00
|
|
|
import "net"
|
|
|
|
|
2021-08-01 00:35:37 +08:00
|
|
|
type Listener interface {
|
|
|
|
RawAddress() string
|
|
|
|
Address() string
|
|
|
|
Close() error
|
|
|
|
}
|
2022-11-11 22:44:44 +08:00
|
|
|
|
|
|
|
type AdvanceListener interface {
|
|
|
|
Close()
|
|
|
|
Config() string
|
|
|
|
HandleConn(conn net.Conn, in chan<- ConnContext)
|
|
|
|
}
|
2022-12-04 13:37:14 +08:00
|
|
|
|
|
|
|
type NewListener interface {
|
|
|
|
Name() string
|
2022-12-04 15:15:23 +08:00
|
|
|
Listen(tcpIn chan<- ConnContext, udpIn chan<- PacketAdapter) error
|
2022-12-04 13:37:14 +08:00
|
|
|
Close() error
|
|
|
|
Address() string
|
|
|
|
RawAddress() string
|
2022-12-04 17:20:24 +08:00
|
|
|
Config() string
|
2022-12-04 13:37:14 +08:00
|
|
|
}
|