Skip to content
Snippets Groups Projects
Unverified Commit 1c82f780 authored by José Ignacio Alamos Aste's avatar José Ignacio Alamos Aste Committed by GitHub
Browse files

Merge pull request #10617 from miri64/gnrc_ipv6/enh/config-group

gnrc_ipv6: add config macros to config doc group
parents 496daa0b 3f17db14
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,13 @@
extern "C" {
#endif
/**
* @defgroup net_gnrc_ipv6_conf GNRC IPv6 compile configurations
* @ingroup net_gnrc_ipv6
* @ingroup config
* @{
*/
/**
* @brief Default stack size to use for the IPv6 thread
*/
......@@ -85,6 +92,7 @@ extern "C" {
*/
#define GNRC_IPV6_STATIC_LLADDR
#endif /* DOXYGEN */
/** @} */
/**
* @brief The PID to the IPv6 thread.
......
......@@ -30,12 +30,19 @@
extern "C" {
#endif
/**
* @defgroup net_gnrc_ipv6_blacklist_conf GNRC IPv6 address blacklisting compile configurations
* @ingroup net_gnrc_ipv6_blacklist
* @ingroup config
* @{
*/
/**
* Maximum size of the blacklist.
*/
#ifndef GNRC_IPV6_BLACKLIST_SIZE
#define GNRC_IPV6_BLACKLIST_SIZE (8)
#endif
/** @} */
/**
* @brief Adds an IPv6 address to the blacklist.
......
......@@ -7,8 +7,9 @@
*/
/**
* @defgroup net_gnrc_ipv6_nib_conf Configuration macros
* @defgroup net_gnrc_ipv6_nib_conf GNRC IPv6 NIB compile configurations
* @ingroup net_gnrc_ipv6_nib
* @ingroup config
* @brief Configuration macros for neighbor information base
* @{
*
......
......@@ -28,12 +28,19 @@
extern "C" {
#endif
/**
* @defgroup net_gnrc_ipv6_whitelist_conf GNRC IPv6 address whitelisting compile configurations
* @ingroup net_gnrc_ipv6_whitelist
* @ingroup config
* @{
*/
/**
* Maximum size of the whitelist.
*/
#ifndef GNRC_IPV6_WHITELIST_SIZE
#define GNRC_IPV6_WHITELIST_SIZE (8)
#endif
/** @} */
/**
* @brief Adds an IPv6 address to the whitelist.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment