Skip to content

Commit

Permalink
gnrc_dhcpv6_client_simple_pd: fix old doc and names
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Jul 20, 2021
1 parent 225c127 commit a0b9eb0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions sys/include/net/gnrc/dhcpv6/client/simple_pd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
*/
Expand Down
6 changes: 3 additions & 3 deletions sys/net/gnrc/application_layer/dhcpv6/client_simple_pd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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");
}

/** @} */

0 comments on commit a0b9eb0

Please sign in to comment.