lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-users] call netif_set_up(netif) if not using DHCP ?


From: Leon Woestenberg
Subject: Re: [lwip-users] call netif_set_up(netif) if not using DHCP ?
Date: Mon, 24 Jan 2005 22:47:00 +0100

Rather use this function:

/**
 * Bring an interface up, available for processing
 * traffic.
 * 
 * @note: Enabling DHCP on a down interface will make it come
 * up once configured.
 * 
 * @see dhcp_start()
 */ 
void netif_set_up(struct netif *netif)
{
  netif->flags |= NETIF_FLAG_UP;
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]