From: Nikolay Aleksandrov Date: Thu, 30 Sep 2021 11:38:37 +0000 (+0300) Subject: ip: nexthop: add nh entry structure X-Git-Tag: v5.16.0~33^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ec1cee630e3ed2259f2b310d091a75ba245dd78;p=thirdparty%2Fiproute2.git ip: nexthop: add nh entry structure Add a structure which describes a nexthop, it will be later used to parse, print and cache nexthops. Signed-off-by: Nikolay Aleksandrov Signed-off-by: David Ahern --- diff --git a/ip/nh_common.h b/ip/nh_common.h index f747244cb..d9730f45c 100644 --- a/ip/nh_common.h +++ b/ip/nh_common.h @@ -9,4 +9,35 @@ struct nha_res_grp { __u64 unbalanced_time; }; +struct nh_entry { + __u32 nh_id; + __u32 nh_oif; + __u32 nh_flags; + __u16 nh_grp_type; + __u8 nh_family; + __u8 nh_scope; + __u8 nh_protocol; + + bool nh_blackhole; + bool nh_fdb; + + int nh_gateway_len; + union { + __be32 ipv4; + struct in6_addr ipv6; + } nh_gateway; + + struct rtattr *nh_encap; + union { + struct rtattr rta; + __u8 _buf[RTA_LENGTH(sizeof(__u16))]; + } nh_encap_type; + + bool nh_has_res_grp; + struct nha_res_grp nh_res_grp; + + int nh_groups_cnt; + struct nexthop_grp *nh_groups; +}; + #endif /* __NH_COMMON_H__ */