lwipipstack: lwip_bringup arguments update

It now accepts additional arguments, that lwipipstack do not use, thus
all 0 and false for dhcp.
pull/3975/head
Martin Kojtal 2016-09-28 09:24:12 +01:00
parent bd3a81d0ec
commit febf1a8d55
1 changed files with 2 additions and 1 deletions

View File

@ -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()