clash/listener/tun/ipstack/stack_adapter.go
2021-11-17 16:03:47 +08:00

9 lines
160 B
Go

package ipstack
// TunAdapter hold the state of tun/tap interface
type TunAdapter interface {
Close()
Stack() string
DNSListen() string
AutoRoute() bool
}