clash/listener/tun/ipstack/stack_adapter.go

10 lines
162 B
Go
Raw Normal View History

2021-11-17 08:03:47 +00:00
package ipstack
// TunAdapter hold the state of tun/tap interface
type TunAdapter interface {
Close()
Stack() string
DnsHijack() []string
2021-11-17 08:03:47 +00:00
AutoRoute() bool
}