mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-12 20:31:17 +08:00
30 lines
459 B
Go
30 lines
459 B
Go
package constant
|
|
|
|
import "net"
|
|
|
|
type Listener interface {
|
|
RawAddress() string
|
|
Address() string
|
|
Close() error
|
|
}
|
|
|
|
type MultiAddrListener interface {
|
|
Close() error
|
|
Config() string
|
|
AddrList() (addrList []net.Addr)
|
|
}
|
|
|
|
type InboundListener interface {
|
|
Name() string
|
|
Listen(tunnel Tunnel) error
|
|
Close() error
|
|
Address() string
|
|
RawAddress() string
|
|
Config() InboundConfig
|
|
}
|
|
|
|
type InboundConfig interface {
|
|
Name() string
|
|
Equal(config InboundConfig) bool
|
|
}
|