mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
12 lines
236 B
Go
12 lines
236 B
Go
package netlink
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
DeviceTypeEthernet DeviceType = unix.ARPHRD_ETHER
|
|
DeviceTypeLoopback DeviceType = unix.ARPHRD_LOOPBACK
|
|
DeviceTypeNone DeviceType = unix.ARPHRD_NONE
|
|
|
|
iffUp = unix.IFF_UP
|
|
)
|