Skip to content

Commit

Permalink
RS14100: Support scanning while connected and roaming
Browse files Browse the repository at this point in the history
CL: RS14100: Support scanning while connected and roaming

PUBLISHED_FROM=a28c826f73f205da8d12a489a640575d0cce4aa4
  • Loading branch information
Deomid Ryabkov authored and cesantabot committed Apr 17, 2019
1 parent 72ec416 commit d251bf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions lwip/src/core/ipv4/dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ static void dhcp_bind(struct netif *netif);
#if DHCP_DOES_ARP_CHECK
static err_t dhcp_decline(struct netif *netif);
#endif /* DHCP_DOES_ARP_CHECK */
static err_t dhcp_rebind(struct netif *netif);
static err_t dhcp_reboot(struct netif *netif);
static void dhcp_set_state(struct dhcp *dhcp, u8_t new_state);

Expand Down Expand Up @@ -1202,7 +1201,7 @@ dhcp_renew(struct netif *netif)
*
* @param netif network interface which must rebind with a DHCP server
*/
static err_t
err_t
dhcp_rebind(struct netif *netif)
{
struct dhcp *dhcp = netif_dhcp_data(netif);
Expand Down
1 change: 1 addition & 0 deletions lwip/src/include/lwip/dhcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ void dhcp_set_struct(struct netif *netif, struct dhcp *dhcp);
void dhcp_cleanup(struct netif *netif);
err_t dhcp_start(struct netif *netif);
err_t dhcp_renew(struct netif *netif);
err_t dhcp_rebind(struct netif *netif);
err_t dhcp_release(struct netif *netif);
void dhcp_stop(struct netif *netif);
void dhcp_release_and_stop(struct netif *netif);
Expand Down

0 comments on commit d251bf9

Please sign in to comment.