Zephyr API 3.6.99
|
Network Interface Device structure. More...
#include <net_if.h>
Data Fields | |
const struct device * | dev |
The actually device driver instance the net_if is related to. | |
const struct net_l2 *const | l2 |
Interface's L2 layer. | |
void * | l2_data |
Interface's private L2 data pointer. | |
atomic_t | flags [ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)] |
For internal use. | |
struct net_linkaddr | link_addr |
The hardware link address. | |
uint16_t | mtu |
The hardware MTU. | |
enum net_if_oper_state | oper_state |
RFC 2863 operational status. | |
Network Interface Device structure.
Used to handle a network interface on top of a device driver instance. There can be many net_if_dev instance against the same device.
Such interface is mainly to be used by the link layer, but is also tight to a network context: it then makes the relation with a network context and the network device.
Because of the strong relationship between a device driver and such network interface, each net_if_dev should be instantiated by one of the network device init macros found in net_if.h.
atomic_t net_if_dev::flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)] |
For internal use.
const struct net_l2* const net_if_dev::l2 |
Interface's L2 layer.
void* net_if_dev::l2_data |
Interface's private L2 data pointer.
struct net_linkaddr net_if_dev::link_addr |
The hardware link address.
uint16_t net_if_dev::mtu |
The hardware MTU.
enum net_if_oper_state net_if_dev::oper_state |
RFC 2863 operational status.