Searched defs:ETH_ALEN (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | gdbudp.c | 48 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 D | if_ether.h | 8 #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 D | slirp.h | 376 # 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 D | DevPCNet.cpp | 876 #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