-
Notifications
You must be signed in to change notification settings - Fork 2k
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
ndp: Add constant for retrans. timer exp. backoff maximum #7179
Conversation
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.
fine with me!
sys/include/net/ndp.h
Outdated
@@ -153,6 +153,12 @@ extern "C" { | |||
#define NDP_MAX_NA_NUMOF (3U) /**< MAX_NEIGHBOR_ADVERTISEMENT */ | |||
#define NDP_REACH_MS (30000U) /**< REACHABLE_TIME (in ms) */ | |||
#define NDP_RETRANS_TIMER_MS (1000U) /**< RETRANS_TIMER (in ms) */ | |||
/** | |||
* @brief MAX_RETRANS_TIMER |
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.
(in ms)
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.
Fixed and amended immediately.
4427547
to
7a444e5
Compare
Adds a constant for the retransmission timer in exponential backoff for UNREACHABLE state (see RFC 7048).