clash/listener/tun/ipstack/stack_adapter.go
2022-01-05 00:33:42 +08:00

9 lines
162 B
Go

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