diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-23 23:59:32 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-23 23:59:32 +0000 |
commit | 10b2240df3a2d5c63ca3bbb7a19c68a9144e824f (patch) | |
tree | 1eb0bf08547f306160a2c7934a370ee7235cf650 /pkg/abi/linux | |
parent | bdf5354e934d5b6fa3211d18731f7255c8bd56f4 (diff) | |
parent | 6d4d9564e3a410684516323fd816b8de64dfb11c (diff) |
Merge release-20190806.1-315-g6d4d956 (automated)
Diffstat (limited to 'pkg/abi/linux')
-rw-r--r-- | pkg/abi/linux/netlink_route.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/abi/linux/netlink_route.go b/pkg/abi/linux/netlink_route.go index 152f6b144..3898d2314 100644 --- a/pkg/abi/linux/netlink_route.go +++ b/pkg/abi/linux/netlink_route.go @@ -325,3 +325,9 @@ const ( RTA_SPORT = 28 RTA_DPORT = 29 ) + +// Route flags, from include/uapi/linux/route.h. +const ( + RTF_GATEWAY = 0x2 + RTF_UP = 0x1 +) |