Skip to content
Snippets Groups Projects
Commit 049b9868 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

ipv6: netif: compute maximum addresses

RPL and ND routers need additional addresses
parent ef000d46
No related branches found
No related tags found
No related merge requests found
...@@ -41,12 +41,20 @@ extern "C" { ...@@ -41,12 +41,20 @@ extern "C" {
* *
* @brief Number of IPv6 addresses per interface. * @brief Number of IPv6 addresses per interface.
*/ */
#ifndef GNRC_IPV6_NETIF_ADDR_NUMOF #ifdef MODULE_GNRC_RPL
/* RPL needs all-RPL-nodes multicast address */
# define RPL_ADDR (1)
#else
# define RPL_ADDR (0)
#endif
#ifdef MODULE_GNRC_IPV6_ROUTER #ifdef MODULE_GNRC_IPV6_ROUTER
#define GNRC_IPV6_NETIF_ADDR_NUMOF (7) /* router needs all-routers multicast address */ /* routers need all-routers multicast address */
# define RTR_ADDR (1)
#else #else
#define GNRC_IPV6_NETIF_ADDR_NUMOF (6) # define RTR_ADDR (0)
#endif #endif
#ifndef GNRC_IPV6_NETIF_ADDR_NUMOF
#define GNRC_IPV6_NETIF_ADDR_NUMOF (6 + RPL_ADDR + RTR_ADDR)
#endif #endif
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment