Home
last modified time | relevance | path

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

/device/generic/goldfish/dhcp/common/
Dmessage.cpp91 uint8_t macAddress[ETH_ALEN]; in offer() local
92 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in offer()
93 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPOFFER)); in offer()
120 uint8_t macAddress[ETH_ALEN]; in ack() local
121 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in ack()
122 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPACK)); in ack()
143 uint8_t macAddress[ETH_ALEN]; in nack() local
144 memcpy(macAddress, sourceMessage.dhcpData.chaddr, sizeof(macAddress)); in nack()
145 Message message(OP_BOOTREPLY, macAddress, static_cast<uint8_t>(DHCPNAK)); in nack()
239 const uint8_t (&macAddress)[ETH_ALEN], in Message()
[all …]
Dmessage.h100 const uint8_t (&macAddress)[ETH_ALEN],
/device/generic/goldfish/dhcp/server/
Dlease.h35 Lease(unsigned int interfaceIndex, const uint8_t* macAddress) { in Lease()
37 memcpy(MacAddress, macAddress, sizeof(MacAddress)); in Lease()
Ddhcpserver.h60 const uint8_t* macAddress,
Ddhcpserver.cpp328 const uint8_t* macAddress, in getOfferAddress() argument
351 Lease key(interfaceIndex, macAddress); in getOfferAddress()