mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 12:30:11 +02:00
12 lines
217 B
Go
12 lines
217 B
Go
package netlink
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
RouteTypeUnicast = unix.RTN_UNICAST
|
|
ScopeUniverse = unix.RT_SCOPE_UNIVERSE
|
|
ProtoStatic = unix.RTPROT_STATIC
|
|
|
|
rtTableCompat = unix.RT_TABLE_COMPAT
|
|
)
|