From 1a53c106e160429fc9f7048c7ffcdb92f5a97914 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 14 Dec 2016 08:42:11 +0100 Subject: [PATCH] CHANGELOG: added LWIP_HOOK_ND6_GET_GW() --- CHANGELOG | 3 +++ src/include/lwip/opt.h | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 134c3c54..42e81894 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,9 @@ HISTORY ++ New features: + 2016-12-14: David van Moolenbroek + * opt.h, nd6.c: Added LWIP_HOOK_ND6_GET_GW() + 2016-12-09: Dirk Ziegelmeier * ip6_frag.c: Implemented support for LWIP_NETIF_TX_SINGLE_PBUF diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 336b77e9..8e5eeefb 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -2433,7 +2433,7 @@ * - dest: the destination IPv4 address * Returns the IPv4 address of the gateway to handle the specified destination * IPv4 address. If NULL is returned, the netif's default gateway is used. - * The returned address MUST be reachable on the specified netif! + * The returned address MUST be directly reachable on the specified netif! * This function is meant to implement advanced IPv4 routing together with * LWIP_HOOK_IP4_ROUTE(). The actual routing/gateway table implementation is * not part of lwIP but can e.g. be hidden in the netif's state argument. @@ -2476,7 +2476,7 @@ * - dest: the destination IPv6 address * Returns the IPv6 address of the next hop to handle the specified destination * IPv6 address. If NULL is returned, a NDP-discovered router is used instead. - * The returned address MUST be reachable on the specified netif! + * The returned address MUST be directly reachable on the specified netif! * This function is meant to implement advanced IPv6 routing together with * LWIP_HOOK_IP6_ROUTE(). The actual routing/gateway table implementation is * not part of lwIP but can e.g. be hidden in the netif's state argument.