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/libsystemd-network/test-dhcp-option.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/libsystemd-network/test-dhcp-option.c')
-rw-r--r-- | src/libsystemd-network/test-dhcp-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/test-dhcp-option.c b/src/libsystemd-network/test-dhcp-option.c index 63cdc7aa06..eac3844f96 100644 --- a/src/libsystemd-network/test-dhcp-option.c +++ b/src/libsystemd-network/test-dhcp-option.c @@ -92,7 +92,7 @@ static void test_message_init(void) message = malloc0(len); assert_se(dhcp_message_init(message, BOOTREQUEST, 0x12345678, - DHCP_DISCOVER, optlen, &optoffset) >= 0); + DHCP_DISCOVER, ARPHRD_ETHER, optlen, &optoffset) >= 0); assert_se(message->xid == htobe32(0x12345678)); assert_se(message->op == BOOTREQUEST); |