sing-box/experimental/libbox/platform/interface.go

18 lines
390 B
Go
Raw Normal View History

2022-10-25 12:55:00 +08:00
package platform
import (
"io"
"github.com/sagernet/sing-box/common/process"
2023-02-28 19:02:27 +08:00
"github.com/sagernet/sing-box/option"
2022-10-25 12:55:00 +08:00
"github.com/sagernet/sing-tun"
"github.com/sagernet/sing/common/control"
)
type Interface interface {
AutoDetectInterfaceControl() control.Func
OpenTun(options *tun.Options, platformOptions option.TunPlatformOptions) (tun.Tun, error)
2022-10-25 12:55:00 +08:00
process.Searcher
io.Writer
}