Clash.Meta/constant/listener.go

30 lines
459 B
Go
Raw Normal View History

2021-08-01 00:35:37 +08:00
package constant
import "net"
2021-08-01 00:35:37 +08:00
type Listener interface {
RawAddress() string
Address() string
Close() error
}
type MultiAddrListener interface {
Close() error
Config() string
AddrList() (addrList []net.Addr)
}
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
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
}