From 47a4be83e4a442fb851b1baa5c13449036901f49 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Tue, 8 Aug 2017 13:13:46 +0200 Subject: [PATCH] CHANGELOG/UPGRADING: Also mention that LWIP_HOOK_IP4_ROUTE_SRC has changed, too --- CHANGELOG | 2 +- UPGRADING | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 544fbc6a..4147687c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -74,7 +74,7 @@ HISTORY 2017-08-08: Dirk Ziegelmeier * ip4_route_src: parameter order is reversed: ip4_route_src(dest, src) -> ip4_route_src(src, dest) to make parameter order consistent with other ip*_route*() functions - + Same also applies to LWIP_HOOK_IP4_ROUTE_SRC() parameter order. 2017-07-26: Simon Goldschmidt * snmp_msg.c: fix bug #51578 (SNMP failed to decode some values on non 32bit platforms) diff --git a/UPGRADING b/UPGRADING index 9e819555..b316c156 100644 --- a/UPGRADING +++ b/UPGRADING @@ -11,7 +11,8 @@ with newer versions. ++ Application changes: * ip4_route_src: parameter order is reversed: ip4_route_src(dest, src) -> ip4_route_src(src, dest) - to make parameter order consistent with other ip*_route*() functions + to make parameter order consistent with other ip*_route*() functions. + Same also applies to LWIP_HOOK_IP4_ROUTE_SRC() parameter order. * pbuf API: pbuf->type (an u8_t holding the enum 'pbuf_type') has changed to only hold a description of the pbuf (e.g. data following pbuf struct, data volatile, allocation @@ -20,7 +21,7 @@ with newer versions. * socket API: according to the standard, SO_ERROR now only returns asynchronous errors. All other/normal/synchronous errors are (and always were) available via 'errno'. - LWIP_SOCKET_SET_ERRNO has been removed - 'errno' is always set - and required! + LWIP_SOCKET_SET_ERRNO has been removed - 'errno' is always set - and required! * compatibility headers: moved from 'src/include/posix' to 'src/include/compat/posix', 'src/include/compat/stdc' etc. @@ -42,7 +43,7 @@ with newer versions. * LWIP_HOOK_DHCP_APPEND_OPTIONS() has changed, see description in opt.h (options_out_len is not available in struct dhcp any more) - + (2.0.1) ++ Application changes: