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

Merge pull request #16657 from miri64/gnrc_dhcpv6_simple_pd/enh/doc-names

gnrc_dhcpv6_client_simple_pd: fix old doc and names
This commit is contained in:
Martine Lenders 2021-07-20 17:20:06 +02:00 committed by GitHub
commit 28c6259001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View File

@ -7,14 +7,15 @@
*/
/**
* @defgroup net_dhcpv6_client_6lbr DHCPv6 client for simple prefix
* delegation
* @defgroup net_dhcpv6_client_simple_pd DHCPv6 client for simple prefix
* delegation
* @ingroup net_dhcpv6_client
* @brief DHCPv6 client bootstrapping for routers & 6LoWPAN border routers
* @brief DHCPv6 client bootstrapping for prefix deligation with routers &
* 6LoWPAN border routers
* @{
*
* @file
* @brief DHCPv6 client on 6LoWPAN border router definitions
* @brief DHCPv6 client for simple prefix delegation definitions
*
* @author Martine S. Lenders <m.lenders@fu-berlin.de>
*/

View File

@ -25,7 +25,7 @@
#include "net/gnrc/dhcpv6/client/simple_pd.h"
#if IS_USED(MODULE_AUTO_INIT_DHCPV6_CLIENT)
#error "Module `gnrc_dhcpv6_client_6lbr` is mutually exclusive to \
#error "Module `gnrc_dhcpv6_client_simple_pd` is mutually exclusive to \
`auto_init_dhcpv6_client`"
#endif
@ -116,7 +116,7 @@ static void _configure_dhcpv6_client(void)
/**
* @brief The DHCPv6 client thread
*/
static void *_dhcpv6_cl_6lbr_thread(void *args)
static void *_dhcpv6_cl_simple_pd_thread(void *args)
{
event_queue_t event_queue;
gnrc_netif_t *upstream_netif = _find_upstream_netif();
@ -146,7 +146,7 @@ void gnrc_dhcpv6_client_simple_pd_init(void)
thread_create(_stack, DHCPV6_CLIENT_STACK_SIZE,
DHCPV6_CLIENT_PRIORITY,
THREAD_CREATE_STACKTEST,
_dhcpv6_cl_6lbr_thread, NULL, "dhcpv6-client");
_dhcpv6_cl_simple_pd_thread, NULL, "dhcpv6-client");
}
/** @} */