From febf1a8d55f541ea361568864150432f8bb67887 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Wed, 28 Sep 2016 09:24:12 +0100 Subject: [PATCH] lwipipstack: lwip_bringup arguments update It now accepts additional arguments, that lwipipstack do not use, thus all 0 and false for dhcp. --- features/net/FEATURE_IPV4/lwip-interface/LWIPIPStack.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/net/FEATURE_IPV4/lwip-interface/LWIPIPStack.cpp b/features/net/FEATURE_IPV4/lwip-interface/LWIPIPStack.cpp index e4a907f090..76abe5694d 100644 --- a/features/net/FEATURE_IPV4/lwip-interface/LWIPIPStack.cpp +++ b/features/net/FEATURE_IPV4/lwip-interface/LWIPIPStack.cpp @@ -21,7 +21,8 @@ void IPStackInterface::bringup(emac_interface_t *emac) { - lwip_bringup(emac); + // no dhcp at this stage, neither other details + lwip_bringup(emac, false, 0, 0, 0); } void IPStackInterface::bringdown()