mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
unit: Consistently use network-byte-order
Commited10b00afa
("unit: Fix eapol IP Allocation test failure") did not convert all instances of IP allocation settings to network byte order. Fixes:5c9de0cf23
("eapol: Store IP address in network byte order")
This commit is contained in:
parent
0971eb4d0c
commit
6a477061c7
@ -3870,9 +3870,9 @@ static void eapol_ap_sta_handshake_ip_alloc_no_req_test(const void *data)
|
||||
handshake_state_set_ssid(s.ap_hs, (void *) ssid, strlen(ssid));
|
||||
handshake_state_set_pmk(s.ap_hs, psk, 32);
|
||||
s.ap_hs->support_ip_allocation = true;
|
||||
s.ap_hs->client_ip_addr = 0x01020304;
|
||||
s.ap_hs->subnet_mask = 0xffff0000;
|
||||
s.ap_hs->go_ip_addr = 0x01020305;
|
||||
s.ap_hs->client_ip_addr = L_CPU_TO_BE32(0x01020304);
|
||||
s.ap_hs->subnet_mask = L_CPU_TO_BE32(0xffff0000);
|
||||
s.ap_hs->go_ip_addr = L_CPU_TO_BE32(0x01020305);
|
||||
|
||||
handshake_state_set_authenticator(s.sta_hs, false);
|
||||
handshake_state_set_event_func(s.sta_hs, test_ap_sta_hs_event, &s);
|
||||
|
Loading…
Reference in New Issue
Block a user