mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-14 12:53:17 +00:00
10 lines
180 B
Go
10 lines
180 B
Go
|
package iffmonitor
|
||
|
|
||
|
import "github.com/sagernet/sing-box/adapter"
|
||
|
|
||
|
type InterfaceMonitor interface {
|
||
|
adapter.Service
|
||
|
DefaultInterfaceName() string
|
||
|
DefaultInterfaceIndex() int
|
||
|
}
|