1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 07:21:18 +01:00

Merge pull request #21157 from benpicco/CONFIG_GNRC_IPV6_STATIC_LLADDR_IS_FIXED-deprecate

gnrc/ipv6/nib: make `CONFIG_GNRC_IPV6_STATIC_LLADDR_IS_FIXED` the default & deprecate it
This commit is contained in:
benpicco 2025-01-23 13:20:38 +00:00 committed by GitHub
commit 90cb5e5c34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -174,11 +174,15 @@ extern "C" {
/**
* @brief Use the same static IPv6 link local address on every network interface
*
* @deprecated Will be removed after release 2025.07 - after this the static link-local
* address will always be fixed unless a use-case for the auto-increment
* can be found.
*
* When CONFIG_GNRC_IPV6_STATIC_LLADDR is used, to not add the interface pid to the
* set static address but use the same static link local address for all interfaces.
*/
#ifndef CONFIG_GNRC_IPV6_STATIC_LLADDR_IS_FIXED
#define CONFIG_GNRC_IPV6_STATIC_LLADDR_IS_FIXED 0
#define CONFIG_GNRC_IPV6_STATIC_LLADDR_IS_FIXED 1
#endif
/**