mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
23 lines
445 B
Go
23 lines
445 B
Go
package control
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
)
|
|
|
|
type InterfaceFinder interface {
|
|
Update() error
|
|
Interfaces() []Interface
|
|
InterfaceIndexByName(name string) (int, error)
|
|
InterfaceNameByIndex(index int) (string, error)
|
|
InterfaceByAddr(addr netip.Addr) (*Interface, error)
|
|
}
|
|
|
|
type Interface struct {
|
|
Index int
|
|
MTU int
|
|
Name string
|
|
Addresses []netip.Prefix
|
|
HardwareAddr net.HardwareAddr
|
|
Flags net.Flags
|
|
}
|