Zephyr API 3.6.99
|
Network link address library . More...
Data Structures | |
struct | net_linkaddr |
Hardware link address structure. More... | |
struct | net_linkaddr_storage |
Hardware link address structure. More... | |
Macros | |
#define | NET_LINK_ADDR_MAX_LENGTH 6 |
Maximum length of the link address. | |
Enumerations | |
enum | net_link_type { NET_LINK_UNKNOWN = 0 , NET_LINK_IEEE802154 , NET_LINK_BLUETOOTH , NET_LINK_ETHERNET , NET_LINK_DUMMY , NET_LINK_CANBUS_RAW } |
Type of the link address. More... | |
Functions | |
static bool | net_linkaddr_cmp (struct net_linkaddr *lladdr1, struct net_linkaddr *lladdr2) |
Compare two link layer addresses. | |
static int | net_linkaddr_set (struct net_linkaddr_storage *lladdr_store, uint8_t *new_addr, uint8_t new_len) |
Set the member data of a link layer address storage structure. | |
Network link address library .
#define NET_LINK_ADDR_MAX_LENGTH 6 |
#include <zephyr/net/net_linkaddr.h>
Maximum length of the link address.
enum net_link_type |
#include <zephyr/net/net_linkaddr.h>
Type of the link address.
This indicates the network technology that this address is used in. Note that in order to save space we store the value into a uint8_t variable, so please do not introduce any values > 255 in this enum.
|
inlinestatic |
#include <zephyr/net/net_linkaddr.h>
Compare two link layer addresses.
lladdr1 | Pointer to a link layer address |
lladdr2 | Pointer to a link layer address |
|
inlinestatic |
#include <zephyr/net/net_linkaddr.h>
Set the member data of a link layer address storage structure.
lladdr_store | The link address storage structure to change. |
new_addr | Array of bytes containing the link address. |
new_len | Length of the link address array. This value should always be <= NET_LINK_ADDR_MAX_LENGTH. |