Searched refs:macAddress (Results 1 – 5 of 5) sorted by relevance
/device/generic/goldfish/dhcp/common/ |
D | message.cpp | 91 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 …]
|
D | message.h | 100 const uint8_t (&macAddress)[ETH_ALEN],
|
/device/generic/goldfish/dhcp/server/ |
D | lease.h | 35 Lease(unsigned int interfaceIndex, const uint8_t* macAddress) { in Lease() 37 memcpy(MacAddress, macAddress, sizeof(MacAddress)); in Lease()
|
D | dhcpserver.h | 60 const uint8_t* macAddress,
|
D | dhcpserver.cpp | 328 const uint8_t* macAddress, in getOfferAddress() argument 351 Lease key(interfaceIndex, macAddress); in getOfferAddress()
|