sing/common/control/bind_finder.go
2024-06-17 12:38:21 +08:00

21 lines
405 B
Go

package control
import (
"net"
"net/netip"
)
type InterfaceFinder interface {
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
}