Minor pbuf layer doc update

This commit is contained in:
Dirk Ziegelmeier 2016-08-07 20:05:01 +02:00
parent 6af213787a
commit 3ca4eb5cd8

View File

@ -84,12 +84,14 @@ typedef enum {
* @see @ref PBUF_LINK_HLEN
*/
PBUF_LINK,
/** Includes spare room for additional encapsulation header before ethernet headers (e.g. 802.11).
/** Includes spare room for additional encapsulation header before ethernet
* headers (e.g. 802.11).
* Use this if you intend to pass the pbuf to functions like netif->linkoutput().
* @see @ref PBUF_LINK_ENCAPSULATION_HLEN
*/
PBUF_RAW_TX,
/** Use this for input packets received by ethernet-layer netif drivers. */
/** Use this for input packets in a netif driver when calling netif->input()
* in the most common case - ethernet-layer netif driver. */
PBUF_RAW
} pbuf_layer;