Add DHCPv6 to documentation

This commit is contained in:
Dirk Ziegelmeier 2018-02-23 12:35:45 +01:00
parent d2ee10977f
commit aa04944ae0
3 changed files with 12 additions and 0 deletions

View File

@ -2088,6 +2088,7 @@ PREDEFINED = __DOXYGEN__=1 \
LWIP_ICMP=1 \
LWIP_RAW=1 \
LWIP_DHCP=1 \
LWIP_IPV6_DHCP6=1 \
LWIP_UDPLITE=1 \
LWIP_UDP=1 \
LWIP_IGMP=1 \

View File

@ -1,5 +1,8 @@
/**
* @file
*
* @defgroup dhcp6 DHCPv6
* @ingroup ip6
* DHCPv6 client: IPv6 address autoconfiguration as per
* RFC 3315 (stateful DHCPv6) and
* RFC 3736 (stateless DHCPv6).

View File

@ -2656,6 +2656,11 @@
* @}
*/
/**
* @defgroup lwip_opts_dhcpv6 DHCPv6
* @ingroup lwip_opts_ipv6
* @{
*/
/**
* LWIP_IPV6_DHCP6==1: enable DHCPv6 stateful/stateless address autoconfiguration.
*/
@ -2702,6 +2707,9 @@
#if !defined LWIP_DHCP6_MAX_DNS_SERVERS || defined __DOXYGEN__
#define LWIP_DHCP6_MAX_DNS_SERVERS DNS_MAX_SERVERS
#endif
/**
* @}
*/
/*
---------------------------------------