Skip to content

Commit

Permalink
[SQUASH ME] ng_ndp: doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Jun 1, 2015
1 parent 5841e25 commit e1df097
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sys/include/net/ng_ndp/hst.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

/**
* @defgroup net_ng_ndp_rtr Host-specific part of router discovery.
* @defgroup net_ng_ndp_hst Host-specific part of router discovery.
* @ingroup net_ng_ndp
* @brief Host-specific part for the router discovery in IPv6
* neighbor discovery.
Expand Down
12 changes: 6 additions & 6 deletions sys/include/net/ng_ndp/rtr.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ extern "C" {

/**
* @brief Activates periodic sending of neighbor advertisements on the
* interface if @ref NG_NDP_NETIF_FLAGS_ROUTER and
* @ref NG_NDP_NETIF_FLAGS_RTR_ADV are set on the interface.
* interface if @ref NG_IPV6_NETIF_FLAGS_ROUTER and
* @ref NG_IPV6_NETIF_FLAGS_RTR_ADV are set on the interface.
*
* @param[in] iface An interface descriptor. Must not be NULL.
*/
Expand All @@ -74,8 +74,8 @@ void ng_ndp_rtr_netif_advertise_router(ng_ipv6_netif_t *iface);
/**
* @brief NDP interface initialization for routers.
*
* @details Always sets both the @ref NG_NDP_NETIF_FLAGS_ROUTER **and** the
* @ref NG_NDP_NETIF_FLAGS_RTR_ADV flags for @p iface.
* @details Always sets both the @ref NG_IPV6_NETIF_FLAGS_ROUTER **and** the
* @ref NG_IPV6_NETIF_FLAGS_RTR_ADV flags for @p iface.
*
* @see <a href="https://tools.ietf.org/html/rfc4861#section-6.2.4">
* RFC 4861, section 6.2.4
Expand All @@ -88,7 +88,7 @@ void ng_ndp_rtr_netif_add(ng_ipv6_netif_t *iface);
/**
* @brief NDP interface removal for routers.
*
* @details Unsets only the @ref NG_NDP_NETIF_FLAGS_ROUTER flag
* @details Unsets only the @ref NG_IPV6_NETIF_FLAGS_ROUTER flag
*
* @see <a href="https://tools.ietf.org/html/rfc4861#section-6.2.5">
* RFC 4861, section 6.2.5
Expand All @@ -110,7 +110,7 @@ void ng_ndp_rtr_advertise_periodically(ng_ipv6_netif_t *iface);
* @brief Activates and deactivates periodic sending of router advertisements
* on this interface.
*
* @details (Un-)sets the @ref NG_NDP_NETIF_FLAGS_RTR_ADV flag
* @details (Un-)sets the @ref NG_IPV6_NETIF_FLAGS_RTR_ADV flag
*
* @param[in] iface An IPv6 interface. Must not be NULL.
* @param[in] active true to activate periodic router advertisements, false
Expand Down

0 comments on commit e1df097

Please sign in to comment.