Minor: Several documentation updates

This commit is contained in:
Dirk Ziegelmeier
2016-08-25 22:04:04 +02:00
parent 452f5d6296
commit 57468b8a30
4 changed files with 33 additions and 23 deletions

View File

@@ -68,6 +68,8 @@ const struct eth_addr ethzero = {{0,0,0,0,0,0}};
*
* @param p the received packet, p->payload pointing to the ethernet header
* @param netif the network interface on which the packet was received
*
* @see @ref LWIP_HOOK_UNKNOWN_ETH_PROTOCOL
*/
err_t
ethernet_input(struct pbuf *p, struct netif *netif)
@@ -243,7 +245,7 @@ free_and_return:
* Send an ethernet packet on the network using netif->linkoutput().
* The ethernet header is filled in before sending.
*
* @see @ref LWIP_HOOK_UNKNOWN_ETH_PROTOCOL
* @see @ref LWIP_HOOK_VLAN_SET
*
* @param netif the lwIP network interface on which to send the packet
* @param p the packet to send. pbuf layer must be @ref PBUF_LINK.