We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I read PR #332, I found comments that seem incorrect https://github.com/thom311/libnl/blob/4c39a2ce1b379c4caa8118ba544b53c9bdb3b687/include/netlink/route/nh.h#L19C25-L19C25
typedef struct nl_nh_group_info { uint32_t nh_id; /*!< VLAN number */ uint8_t weight; /*!< VLAN QOS value */ } nl_nh_group_info_t;
I think the comments should be
typedef struct nl_nh_group_info { uint32_t nh_id; /*!< nexthop id */ uint8_t weight; /*!< weight in nexthop group*/ } nl_nh_group_info_t;
The text was updated successfully, but these errors were encountered:
you are right, looks like a copy+paste error. Should be fixed :)
Sorry, something went wrong.
route: fix documentation comment for nl_nh_group_info
74bffbf
#356 Fixes: 780d06a ('route: add nh type')
fixed by 74bffbf
Thanks!!
No branches or pull requests
When I read PR #332, I found comments that seem incorrect
https://github.com/thom311/libnl/blob/4c39a2ce1b379c4caa8118ba544b53c9bdb3b687/include/netlink/route/nh.h#L19C25-L19C25
I think the comments should be
The text was updated successfully, but these errors were encountered: