enum tapi_netif_msg_level

Network interface driver message level flags. Values should be the same as values of corresponding NETIF_MSG* flags from include/linux/netdevice.h in linux kernel sources.

#include <tapi_cfg_if.h>

enum tapi_netif_msg_level {
    TAPI_NETIF_MSG_DRV       = 0x0001,
    TAPI_NETIF_MSG_PROBE     = 0x0002,
    TAPI_NETIF_MSG_LINK      = 0x0004,
    TAPI_NETIF_MSG_TIMER     = 0x0008,
    TAPI_NETIF_MSG_IFDOWN    = 0x0010,
    TAPI_NETIF_MSG_IFUP      = 0x0020,
    TAPI_NETIF_MSG_RX_ERR    = 0x0040,
    TAPI_NETIF_MSG_TX_ERR    = 0x0080,
    TAPI_NETIF_MSG_TX_QUEUED = 0x0100,
    TAPI_NETIF_MSG_INTR      = 0x0200,
    TAPI_NETIF_MSG_TX_DONE   = 0x0400,
    TAPI_NETIF_MSG_RX_STATUS = 0x0800,
    TAPI_NETIF_MSG_PKTDATA   = 0x1000,
    TAPI_NETIF_MSG_HW        = 0x2000,
    TAPI_NETIF_MSG_WOL       = 0x4000,
};