Matched interface documentation for netif_add() API change in 1.28.2.5.

This commit is contained in:
likewise 2004-03-04 16:19:53 +00:00
parent 33d0096b81
commit a6f1111469

View File

@ -50,12 +50,14 @@ struct netif *netif_default = NULL;
/**
* Add a network interface to the list of lwIP netifs.
*
* @param netif a pre-allocated netif structure
* @param ipaddr IP address for the new netif
* @param netmask network mask for the new netif
* @param gw default gateway IP address for the new netif
* @param state opaque data passed to the new netif
* @param init callback function that initializes the interface
* @param input callback function that...
* @param input callback function that is called to pass
* ingress packets up in the protocol layer stack.
*
* @return netif, or NULL if failed.
*/