- package platform
- import (
- "io"
- "github.com/sagernet/sing-box/common/process"
- "github.com/sagernet/sing-tun"
- "github.com/sagernet/sing/common/control"
- )
- type Interface interface {
- AutoDetectInterfaceControl() control.Func
- OpenTun(options tun.Options) (tun.Tun, error)
- process.Searcher
- io.Writer
- }
|