98#ifndef NET_EUI_PROVIDER_H
99#define NET_EUI_PROVIDER_H
196 addr_short->
u8[0] = addr_long->
uint8[6] & 0x7F;
197 addr_short->
u8[1] = addr_long->
uint8[7];
Definitions low-level network driver interface.
Definition and IPv6 IID conversion for IEEE EUI-48 identifiers.
EUI-64 data type definition.
netdev_type_t
Driver types for netdev.
int(* netdev_get_eui48_cb_t)(uint8_t index, eui48_t *addr)
Function for providing a EUI-48 to a device.
static void eui_short_from_eui64(eui64_t *addr_long, network_uint16_t *addr_short)
Get a short unicast address from an EUI-64.
void netdev_eui48_get(netdev_t *netdev, eui48_t *addr)
Generates an EUI-48 address for the netdev interface.
int(* netdev_get_eui64_cb_t)(uint8_t index, eui64_t *addr)
Function for providing a EUI-64 to a device.
void netdev_eui64_get(netdev_t *netdev, eui64_t *addr)
Generates an EUI-64 address for the netdev interface.
Structure to hold providers for EUI-48 addresses.
netdev_type_t type
device type to match
uint8_t index
device index to match or NETDEV_INDEX_ANY
netdev_get_eui48_cb_t provider
function to provide an EUI-48
Data type to represent an EUI-48.
Structure to hold providers for EUI-64 addresses.
netdev_type_t type
device type to match
uint8_t index
device index to match or NETDEV_INDEX_ANY
netdev_get_eui64_cb_t provider
function to provide an EUI-64
Structure to hold driver state.
A 16 bit integer in big endian aka network byte order.
uint8_t u8[2]
8 bit representation
Data type to represent an EUI-64.
uint8_t uint8[8]
split into 8 8-bit words.