1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 01:11:21 +01:00

gnrc_netif: add flag to indicate 6Lo capabilities

This commit is contained in:
Martine Lenders 2018-12-27 21:07:40 +01:00 committed by Martine S. Lenders
parent 5b4b12ed07
commit 004f7d8b16

View File

@ -125,6 +125,16 @@ enum {
*/
#define GNRC_NETIF_FLAGS_6LN (0x00001000U)
/**
* @brief 6Lo is activated for this interface
*
* @note Most devices supporting 6Lo actually *require* 6Lo so this flag
* should not be configurable for them. As a consequence, this flag
* **must** only be changed by a @ref NETOPT_6LO message to the
* interface.
*/
#define GNRC_NETIF_FLAGS_6LO (0x00002000U)
/**
* @brief Network interface is configured in raw mode
*/