![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/vishvananda/netlink](https://github.com/vishvananda/netlink) from 1.2.1-beta.2 to 1.3.0. - [Release notes](https://github.com/vishvananda/netlink/releases) - [Commits](https://github.com/vishvananda/netlink/compare/v1.2.1-beta.2...v1.3.0) --- updated-dependencies: - dependency-name: github.com/vishvananda/netlink dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
493 B
Go
22 lines
493 B
Go
package nl
|
|
|
|
// id's of route attribute from https://elixir.bootlin.com/linux/v5.17.3/source/include/uapi/linux/lwtunnel.h#L38
|
|
// the value's size are specified in https://elixir.bootlin.com/linux/v5.17.3/source/net/ipv4/ip_tunnel_core.c#L928
|
|
|
|
const (
|
|
LWTUNNEL_IP6_UNSPEC = iota
|
|
LWTUNNEL_IP6_ID
|
|
LWTUNNEL_IP6_DST
|
|
LWTUNNEL_IP6_SRC
|
|
LWTUNNEL_IP6_HOPLIMIT
|
|
LWTUNNEL_IP6_TC
|
|
LWTUNNEL_IP6_FLAGS
|
|
LWTUNNEL_IP6_PAD // not implemented
|
|
LWTUNNEL_IP6_OPTS // not implemented
|
|
__LWTUNNEL_IP6_MAX
|
|
)
|
|
|
|
|
|
|
|
|