Home
last modified time | relevance | path

Searched refs:macAddress (Results 1 – 2 of 2) sorted by relevance

/device/generic/goldfish/dhcp/common/
Dmessage.cpp89 uint8_t macAddress[ETH_ALEN]; in offer() local
90 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in offer()
91 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPOFFER)); in offer()
118 uint8_t macAddress[ETH_ALEN]; in ack() local
119 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in ack()
120 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPACK)); in ack()
141 uint8_t macAddress[ETH_ALEN]; in nack() local
142 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in nack()
143 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPNAK)); in nack()
237 const uint8_t (&macAddress)[ETH_ALEN], in Message()
[all …]
/device/generic/goldfish/dhcp/common/include/
Dmessage.h100 const uint8_t (&macAddress)[ETH_ALEN],