2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

- If configured, dhclient may now transmit to an anycast MAC address,

rather than using a broadcast address.  Thanks to a patch from David
  Cantrell at Red Hat. [ISC-Bugs #17740]
This commit is contained in:
David Hankins
2009-03-13 21:41:45 +00:00
parent 4b97eaff2f
commit 0829d595f8
11 changed files with 63 additions and 4 deletions

View File

@@ -1156,6 +1156,7 @@ struct interface_info {
int dlpi_sap_length;
struct hardware dlpi_broadcast_addr;
# endif /* DLPI_SEND || DLPI_RECEIVE */
struct hardware anycast_mac_addr;
};
struct hardware_link {

View File

@@ -352,7 +352,9 @@ enum dhcp_token {
ZEROLEN = 655,
TEMPORARY = 656,
PREFIX6 = 657,
FIXED_PREFIX6 = 658
FIXED_PREFIX6 = 658,
ANYCAST_MAC = 659
};
#define is_identifier(x) ((x) >= FIRST_TOKEN && \