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
The documentation for NeighDel (which wraps RTM_NEIGHDEL) appears to be incorrect:
NeighDel
RTM_NEIGHDEL
// NeighDel will delete an IP address from a link device. // Equivalent to: `ip addr del $addr dev $link` func NeighDel(neigh *Neigh) error
This does not match the manual page which reads:
Add, remove, or receive information about a neighbor entry (e.g., an ARP entry). The message contains an ndmsg structure.
All the other Neigh* methods do talk about bridges and the FDB which is about what I would expect.
The text was updated successfully, but these errors were encountered:
I guess a correct documentation would be something like:
// NeighDel will delete an entry from the NDB // Equivalent to: `bridge fdb del $addr dev $dev`
Sorry, something went wrong.
please provide a PR which will be handling this change
No branches or pull requests
The documentation for
NeighDel
(which wrapsRTM_NEIGHDEL
) appears to be incorrect:This does not match the manual page which reads:
All the other Neigh* methods do talk about bridges and the FDB which is about what I would expect.
The text was updated successfully, but these errors were encountered: