|
Zephyr API Documentation 4.3.99
A Scalable Open Source RTOS
|
Timestamp callback handler struct. More...
#include <zephyr/net/net_if.h>
Data Fields | |
| sys_snode_t | node |
| Node information for the slist. | |
| struct net_pkt * | pkt |
| Packet for which the callback is needed. | |
| struct net_if * | iface |
| Net interface for which the callback is needed. | |
| net_if_timestamp_callback_t | cb |
| Timestamp callback. | |
Timestamp callback handler struct.
Stores the timestamp callback information. Caller must make sure that the variable pointed by this is valid during the lifetime of registration. Typically this means that the variable cannot be allocated from stack.
| net_if_timestamp_callback_t net_if_timestamp_cb::cb |
Timestamp callback.
| struct net_if* net_if_timestamp_cb::iface |
Net interface for which the callback is needed.
A NULL value means all interfaces.
| sys_snode_t net_if_timestamp_cb::node |
Node information for the slist.
| struct net_pkt* net_if_timestamp_cb::pkt |
Packet for which the callback is needed.
A NULL value means all packets.