diff options
author | Dan Williams <dcbw@redhat.com> | 2014-10-08 14:15:45 -0500 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-10-11 12:15:54 +0200 |
commit | 76253e73f9c9c24fec755e485516f3b55d0707b4 (patch) | |
tree | ae99dc09b50a8d8de2428dbc6e6b57f51ef6776c /src/network/networkd-dhcp4.c | |
parent | 5482192e5774f52f2af0665a3b58539295e9c0a4 (diff) |
sd-dhcp-client: support non-Ethernet hardware addresses
Like Infiniband. See RFC 4390 section 2.1 for details on DHCP
and Infiniband; chaddr is zeroed, hlen is set to 0, and htype
is set to ARPHRD_INFINIBAND because IB hardware addresses
are 20 bytes in length.
Diffstat (limited to 'src/network/networkd-dhcp4.c')
-rw-r--r-- | src/network/networkd-dhcp4.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/network/networkd-dhcp4.c b/src/network/networkd-dhcp4.c index e451af8643..63bfa86f99 100644 --- a/src/network/networkd-dhcp4.c +++ b/src/network/networkd-dhcp4.c @@ -599,7 +599,9 @@ int dhcp4_configure(Link *link) { if (r < 0) return r; - r = sd_dhcp_client_set_mac(link->dhcp_client, &link->mac); + r = sd_dhcp_client_set_mac(link->dhcp_client, + (const uint8_t *) &link->mac, + sizeof (link->mac), ARPHRD_ETHER); if (r < 0) return r; |