-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
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
[nrf noup] Introduce API for IPv6 neighbor reachability confirmation #387
base: master
Are you sure you want to change the base?
Conversation
@@ -40,6 +40,10 @@ | |||
#define INET_CONFIG_NUM_UDP_ENDPOINTS 4 | |||
#endif // INET_CONFIG_NUM_UDP_ENDPOINTS | |||
|
|||
#ifndef INET_CONFIG_ENABLE_IP_NEIGH_REACHABILITY_CONFIRMATION | |||
#define INET_CONFIG_ENABLE_IP_NEIGH_REACHABILITY_CONFIRMATION 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to be changed after Zephyr's commit is in place.
@@ -40,6 +40,10 @@ | |||
#define INET_CONFIG_NUM_UDP_ENDPOINTS 4 | |||
#endif // INET_CONFIG_NUM_UDP_ENDPOINTS | |||
|
|||
#ifndef INET_CONFIG_ENABLE_IP_NEIGH_REACHABILITY_CONFIRMATION | |||
#define INET_CONFIG_ENABLE_IP_NEIGH_REACHABILITY_CONFIRMATION 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 for nRF?
This commit introduces a way for MRP to report reachability for the given neighbor device in order to save power consumption by avoiding ICMPv6 ND probing as per the guidelines in RFC 4861 (section 7.3). Signed-off-by: Łukasz Duda <[email protected]>
As there are too many dependencies in upstream Zephyr, let's merge it to NCS 2.7.0 after Zephyr upmerge. |
This commit introduces a way for MRP to report reachability for the given neighbor device. It helps to save power consumption by avoiding ICMPv6 ND probing as per the guidelines in RFC 4861 (section 7.3).
DNM as this depends on Zephyr's commit that is not yet cherry-picked.