1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #8346 from miri64/doc/fix/ndp-dad-max

ndp: sixlowpan_nd: explain maximum retransmission for DAD
This commit is contained in:
Koen Zandberg 2018-01-12 20:02:21 +01:00 committed by GitHub
commit 0af100412c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -157,7 +157,9 @@ extern "C" {
/**
* @brief Default for DupAddrDetectTransmits
* @see [RFC 4862, section 5.1](https://tools.ietf.org/html/rfc4862#section-5.1)
* @note Must not be greater than 7.
* @note Must not be greater than 7 for @ref net_gnrc since
* @ref GNRC_NETIF_IPV6_ADDRS_FLAGS_STATE_TENTATIVE restricts it to
* that number.
*/
#define NDP_DAD_TRANSMIT_NUMOF (1U)
#define NDP_MAX_ANYCAST_MS_DELAY (1000U) /**< MAX_ANYCAST_DELAY_TIME (in ms) */

View File

@ -115,7 +115,9 @@ extern "C" {
/**
* @brief Number of address registration retries
*
* @note Must not be greater than 7.
* @note Must not be greater than 7 for @ref net_gnrc since
* @ref GNRC_NETIF_IPV6_ADDRS_FLAGS_STATE_TENTATIVE restricts it to
* that number.
*/
#define SIXLOWPAN_ND_REG_TRANSMIT_NUMOF (3U)
/**