From a92e838687048990759be68e4c0f03ed64f5c9e0 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 13 Jun 2017 21:13:45 +0200 Subject: [PATCH] httpd: include hooks header file so that redefined defines/functions can be defined there --- src/apps/httpd/httpd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apps/httpd/httpd.c b/src/apps/httpd/httpd.c index 2ffb1b0d..79acf94f 100644 --- a/src/apps/httpd/httpd.c +++ b/src/apps/httpd/httpd.c @@ -101,6 +101,9 @@ #if HTTPD_ENABLE_HTTPS #include "lwip/altcp_tls.h" #endif +#ifdef LWIP_HOOK_FILENAME +#include LWIP_HOOK_FILENAME +#endif #include /* memset */ #include /* atoi */