mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
10 lines
158 B
Go
10 lines
158 B
Go
package netlink
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
FamilyAll uint8 = unix.AF_UNSPEC
|
|
FamilyV4 uint8 = unix.AF_INET
|
|
FamilyV6 uint8 = unix.AF_INET6
|
|
)
|