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
|
|
|
|
2022-12-05 10:12:53 +08:00
|
|
|
type MultiAddrListener interface {
|
2022-12-05 00:20:50 +08:00
|
|
|
Close() error
|
2022-11-11 22:44:44 +08:00
|
|
|
Config() string
|
2022-12-05 00:20:50 +08:00
|
|
|
AddrList() (addrList []net.Addr)
|
2022-11-11 22:44:44 +08:00
|
|
|
}
|
2022-12-04 13:37:14 +08:00
|
|
|
|
2022-12-04 21:53:13 +08:00
|
|
|
type InboundListener interface {
|
2022-12-04 13:37:14 +08:00
|
|
|
Name() string
|
2023-09-28 18:59:31 +08:00
|
|
|
Listen(tunnel Tunnel) error
|
2022-12-04 13:37:14 +08:00
|
|
|
Close() error
|
|
|
|
Address() string
|
|
|
|
RawAddress() string
|
2022-12-04 21:53:13 +08:00
|
|
|
Config() InboundConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
type InboundConfig interface {
|
|
|
|
Name() string
|
|
|
|
Equal(config InboundConfig) bool
|
2022-12-04 13:37:14 +08:00
|
|
|
}
|