Merge pull request #2809 from geky/lwip-fix-default-dhcp

lwip - Fix default behaviour of DHCP
pull/2813/head
Sam Grove 2016-09-26 02:39:20 -05:00 committed by GitHub
commit 157fa65a51
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
/* Interface implementation */
EthernetInterface::EthernetInterface()
: _dhcp(false), _ip_address(), _netmask(), _gateway()
: _dhcp(true), _ip_address(), _netmask(), _gateway()
{
}