Browse Source

Merge pull request #4051 from DavidLin1577/patch-15

[net/lwip2.1.2]Update ethernetif.c
Bernard Xiong 4 years ago
parent
commit
082dda7a1d
1 changed files with 10 additions and 0 deletions
  1. 10 0
      components/net/lwip-2.1.2/src/netif/ethernetif.c

+ 10 - 0
components/net/lwip-2.1.2/src/netif/ethernetif.c

@@ -163,6 +163,16 @@ static int lwip_netdev_set_dns_server(struct netdev *netif, uint8_t dns_num, ip_
 static int lwip_netdev_set_dhcp(struct netdev *netif, rt_bool_t is_enabled)
 {
     netdev_low_level_set_dhcp_status(netif, is_enabled);
+	
+    if(RT_TRUE == is_enabled)
+    {
+        dhcp_start((struct netif *)netif->user_data);
+    }
+    else
+    {
+        dhcp_stop((struct netif *)netif->user_data);    
+    }
+	
     return ERR_OK;
 }
 #endif /* RT_LWIP_DHCP */