From 2cf5eec62f9805792e56c30e88201a8de56f60f5 Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Tue, 14 Jan 2014 21:32:45 +0100 Subject: [PATCH] patch by Thomas Faber: patch #8241: Fix implicit declaration of ip_input with LWIP_TCPIP_CORE_LOCKING_INPUT disabled --- CHANGELOG | 4 ++++ src/api/tcpip.c | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 8f40e408..e455f70f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -80,6 +80,10 @@ HISTORY ++ Bugfixes: + 2014-01-14: Simo Goldschmidt (patch by Thomas Faber) + * tcpip.c: patch #8241: Fix implicit declaration of ip_input with + LWIP_TCPIP_CORE_LOCKING_INPUT disabled + 2014-01-14: chrysn * timers.c: patch #8244 make timeouts usable reliably from outside of the timeout routine diff --git a/src/api/tcpip.c b/src/api/tcpip.c index 7c1c9cad..2c0032c2 100644 --- a/src/api/tcpip.c +++ b/src/api/tcpip.c @@ -46,6 +46,7 @@ #include "lwip/pbuf.h" #include "lwip/tcpip.h" #include "lwip/init.h" +#include "lwip/ip.h" #include "netif/etharp.h" #include "netif/ppp_oe.h"