mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 00:21:30 +00:00
35 lines
967 B
Go
35 lines
967 B
Go
package platform
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing-box/common/process"
|
|
"github.com/sagernet/sing-box/option"
|
|
"github.com/sagernet/sing-tun"
|
|
"github.com/sagernet/sing/common/logger"
|
|
)
|
|
|
|
type Interface interface {
|
|
Initialize(networkManager adapter.NetworkManager) error
|
|
UsePlatformAutoDetectInterfaceControl() bool
|
|
AutoDetectInterfaceControl(fd int) error
|
|
OpenTun(options *tun.Options, platformOptions option.TunPlatformOptions) (tun.Tun, error)
|
|
CreateDefaultInterfaceMonitor(logger logger.Logger) tun.DefaultInterfaceMonitor
|
|
Interfaces() ([]adapter.NetworkInterface, error)
|
|
UnderNetworkExtension() bool
|
|
IncludeAllNetworks() bool
|
|
ClearDNSCache()
|
|
ReadWIFIState() adapter.WIFIState
|
|
process.Searcher
|
|
SendNotification(notification *Notification) error
|
|
}
|
|
|
|
type Notification struct {
|
|
Identifier string
|
|
TypeName string
|
|
TypeID int32
|
|
Title string
|
|
Subtitle string
|
|
Body string
|
|
OpenURL string
|
|
}
|