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

gnrc_ipv6_nib: make RS emission configurable

This commit is contained in:
Martine Lenders 2018-08-06 14:47:01 +02:00
parent 7a20a5ec46
commit bdb1e80e0a
2 changed files with 13 additions and 0 deletions

View File

@ -216,6 +216,15 @@ extern "C" {
#define GNRC_IPV6_NIB_CONF_REACH_TIME_RESET (7200000U)
#endif
/**
* @brief Disable router solicitations
*
* @warning Only do this if you know what you're doing
*/
#ifndef GNRC_IPV6_NIB_CONF_NO_RTR_SOL
#define GNRC_IPV6_NIB_CONF_NO_RTR_SOL (0)
#endif
/**
* @brief Maximum link-layer address length (aligned)
*/

View File

@ -1227,6 +1227,7 @@ static void _handle_rtr_timeout(_nib_dr_entry_t *router)
void _handle_search_rtr(gnrc_netif_t *netif)
{
#if !GNRC_IPV6_NIB_CONF_NO_RTR_SOL
gnrc_netif_acquire(netif);
if (!(gnrc_netif_is_rtr_adv(netif)) || gnrc_netif_is_6ln(netif)) {
uint32_t next_rs = _evtimer_lookup(netif, GNRC_IPV6_NIB_SEARCH_RTR);
@ -1249,6 +1250,9 @@ void _handle_search_rtr(gnrc_netif_t *netif)
}
}
gnrc_netif_release(netif);
#else
(void)netif;
#endif /* !GNRC_IPV6_NIB_CONF_NO_RTR_SOL */
}
#if GNRC_IPV6_NIB_CONF_DNS