The DHCP client should enter the REBOOTING state when connecting to a

new network. If DHCP has bound to an address, it must be verified
after netif_set_link_up.
This commit is contained in:
stoklund
2009-08-24 13:12:37 +00:00
parent d83fc6893b
commit 103ba9b0fc
3 changed files with 104 additions and 1 deletions

View File

@@ -124,6 +124,8 @@ err_t dhcp_release(struct netif *netif);
void dhcp_stop(struct netif *netif);
/** inform server of our manual IP address */
void dhcp_inform(struct netif *netif);
/** Handle a possible change in the network configuration */
void dhcp_network_changed(struct netif *netif);
/** if enabled, check whether the offered IP address is not in use, using ARP */
#if DHCP_DOES_ARP_CHECK