Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
6e31ce7c
Commit
6e31ce7c
authored
6 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
gnrc_netif: increase number of maximum IPv6 groups
parent
4ddbf432
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sys/include/net/gnrc/netif/conf.h
+5
-3
5 additions, 3 deletions
sys/include/net/gnrc/netif/conf.h
with
5 additions
and
3 deletions
sys/include/net/gnrc/netif/conf.h
+
5
−
3
View file @
6e31ce7c
...
@@ -74,7 +74,7 @@ extern "C" {
...
@@ -74,7 +74,7 @@ extern "C" {
* @ref GNRC_NETIF_IPV6_GROUPS_NUMOF is also large enough to fit the
* @ref GNRC_NETIF_IPV6_GROUPS_NUMOF is also large enough to fit the
* addresses' solicited nodes multicast addresses.
* addresses' solicited nodes multicast addresses.
*
*
* Default: 2 (link-local +
corresponding
global address)
* Default: 2 (
1
link-local +
1
global address)
*/
*/
#ifndef GNRC_NETIF_IPV6_ADDRS_NUMOF
#ifndef GNRC_NETIF_IPV6_ADDRS_NUMOF
#define GNRC_NETIF_IPV6_ADDRS_NUMOF (2)
#define GNRC_NETIF_IPV6_ADDRS_NUMOF (2)
...
@@ -83,11 +83,13 @@ extern "C" {
...
@@ -83,11 +83,13 @@ extern "C" {
/**
/**
* @brief Maximum number of multicast groups per interface
* @brief Maximum number of multicast groups per interface
*
*
* Default:
2
(all-nodes + solicited-nodes of link-local and global unicast
* Default:
3
(all-nodes + solicited-nodes of link-local and global unicast
* address) + @ref GNRC_NETIF_RPL_ADDR + @ref GNRC_NETIF_IPV6_RTR_ADDR
* address) + @ref GNRC_NETIF_RPL_ADDR + @ref GNRC_NETIF_IPV6_RTR_ADDR
*/
*/
#ifndef GNRC_NETIF_IPV6_GROUPS_NUMOF
#ifndef GNRC_NETIF_IPV6_GROUPS_NUMOF
#define GNRC_NETIF_IPV6_GROUPS_NUMOF (2 + GNRC_NETIF_RPL_ADDR + GNRC_NETIF_IPV6_RTR_ADDR)
#define GNRC_NETIF_IPV6_GROUPS_NUMOF (GNRC_NETIF_IPV6_ADDRS_NUMOF + \
GNRC_NETIF_RPL_ADDR + \
GNRC_NETIF_IPV6_RTR_ADDR + 1)
#endif
#endif
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment