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

37 lines
960 B
Go
Raw Normal View History

2022-10-25 04:55:00 +00:00
package platform
import (
2023-04-18 06:04:09 +00:00
"context"
2022-10-25 04:55:00 +00:00
"io"
2023-04-18 06:04:09 +00:00
"net/netip"
2022-10-25 04:55:00 +00:00
2023-04-18 06:04:09 +00:00
"github.com/sagernet/sing-box/adapter"
2022-10-25 04:55:00 +00:00
"github.com/sagernet/sing-box/common/process"
2023-02-28 11:02:27 +00:00
"github.com/sagernet/sing-box/option"
2022-10-25 04:55:00 +00:00
"github.com/sagernet/sing-tun"
"github.com/sagernet/sing/common/control"
2023-07-23 06:42:19 +00:00
"github.com/sagernet/sing/common/logger"
2022-10-25 04:55:00 +00:00
)
type Interface interface {
2023-04-18 06:04:09 +00:00
Initialize(ctx context.Context, router adapter.Router) error
UsePlatformAutoDetectInterfaceControl() bool
2022-10-25 04:55:00 +00:00
AutoDetectInterfaceControl() control.Func
OpenTun(options *tun.Options, platformOptions option.TunPlatformOptions) (tun.Tun, error)
2023-04-18 06:04:09 +00:00
UsePlatformDefaultInterfaceMonitor() bool
2023-07-23 06:42:19 +00:00
CreateDefaultInterfaceMonitor(logger logger.Logger) tun.DefaultInterfaceMonitor
2023-04-18 06:04:09 +00:00
UsePlatformInterfaceGetter() bool
Interfaces() ([]NetworkInterface, error)
UnderNetworkExtension() bool
ClearDNSCache()
2022-10-25 04:55:00 +00:00
process.Searcher
io.Writer
}
2023-04-18 06:04:09 +00:00
type NetworkInterface struct {
Index int
MTU int
Name string
Addresses []netip.Prefix
}