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

Merge pull request #3477 from OlegHahm/increase_ipv6_netif_numof

ipv6: increase number of addresses per interface
This commit is contained in:
Cenk Gündoğan 2015-07-22 20:51:33 +02:00
commit d4f5715a58

View File

@ -42,9 +42,9 @@ extern "C" {
*/
#ifndef NG_IPV6_NETIF_ADDR_NUMOF
#ifdef MODULE_NG_IPV6_ROUTER
#define NG_IPV6_NETIF_ADDR_NUMOF (5) /* router needs all-routers multicast address */
#define NG_IPV6_NETIF_ADDR_NUMOF (7) /* router needs all-routers multicast address */
#else
#define NG_IPV6_NETIF_ADDR_NUMOF (4)
#define NG_IPV6_NETIF_ADDR_NUMOF (6)
#endif
#endif