Added handling of dhcp_unconfigured events

This commit is contained in:
adamdunkels 2006-06-17 23:08:16 +00:00
parent cbb910ab52
commit 4dcbd9845c
1 changed files with 7 additions and 0 deletions

View File

@ -151,3 +151,10 @@ dhcpc_configured(const struct dhcpc_state *s)
process_post(PROCESS_CURRENT(), SHOWCONFIG, NULL);
}
/*---------------------------------------------------------------------------*/
void
dhcpc_unconfigured(const struct dhcpc_state *s)
{
set_statustext("Unconfigured.");
process_post(PROCESS_CURRENT(), SHOWCONFIG, NULL);
}
/*---------------------------------------------------------------------------*/