Searched defs:ETH_ALEN (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dgdbudp.c48 static uint8_t dest_eth[ETH_ALEN];
83 if ( iob_len ( iob ) < sizeof ( *arphdr ) + 2 * ( ETH_ALEN + sizeof ( struct in_addr ) ) ||
86 arphdr->ar_hln != ETH_ALEN ||
96 memcpy ( arp_target_ha ( arphdr ), arp_sender_ha ( arphdr ), ETH_ALEN ); local
97 memcpy ( arp_sender_ha ( arphdr ), netdev->ll_addr, ETH_ALEN ); local
101 memcpy ( ethhdr->h_dest, ethhdr->h_source, ETH_ALEN );
102 memcpy ( ethhdr->h_source, netdev->ll_addr, ETH_ALEN );
132 memcpy ( dest_eth, ethhdr->h_source, ETH_ALEN );
201 memcpy ( ethhdr->h_dest, dest_eth, ETH_ALEN );
202 memcpy ( ethhdr->h_source, netdev->ll_addr, ETH_ALEN );
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dif_ether.h8 #define ETH_ALEN 6 /* Size of Ethernet address */ macro
32 uint8_t h_dest[ETH_ALEN];
34 uint8_t h_source[ETH_ALEN];
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp.h376 # define ETH_ALEN 6 macro
384 unsigned char h_dest[ETH_ALEN]; /* destination eth addr */
385 unsigned char h_source[ETH_ALEN]; /* source ether addr */
/vbox/src/VBox/Devices/Network/
H A DDevPCNet.cpp876 #define ETHER_ADDR_LEN ETH_ALEN
877 #define ETH_ALEN 6 macro
881 uint8_t ether_dhost[ETH_ALEN]; /**< destination ethernet address */
882 uint8_t ether_shost[ETH_ALEN]; /**< source ethernet address */

Completed in 77 milliseconds