mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 23:40:43 +01:00
scan: use new l_genl send APIs
This commit is contained in:
parent
7b0c04db48
commit
feefad9957
@ -46,7 +46,6 @@ void scan_start(struct l_genl_family *nl80211, uint32_t ifindex,
|
|||||||
msg = l_genl_msg_new_sized(NL80211_CMD_TRIGGER_SCAN, 16);
|
msg = l_genl_msg_new_sized(NL80211_CMD_TRIGGER_SCAN, 16);
|
||||||
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
||||||
l_genl_family_send(nl80211, msg, callback, user_data, NULL);
|
l_genl_family_send(nl80211, msg, callback, user_data, NULL);
|
||||||
l_genl_msg_unref(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void scan_sched_start(struct l_genl_family *nl80211, uint32_t ifindex,
|
void scan_sched_start(struct l_genl_family *nl80211, uint32_t ifindex,
|
||||||
@ -65,8 +64,6 @@ void scan_sched_start(struct l_genl_family *nl80211, uint32_t ifindex,
|
|||||||
|
|
||||||
if (!l_genl_family_send(nl80211, msg, callback, user_data, NULL))
|
if (!l_genl_family_send(nl80211, msg, callback, user_data, NULL))
|
||||||
l_error("Starting scheduled scan failed");
|
l_error("Starting scheduled scan failed");
|
||||||
|
|
||||||
l_genl_msg_unref(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void scan_get_results(struct l_genl_family *nl80211, uint32_t ifindex,
|
void scan_get_results(struct l_genl_family *nl80211, uint32_t ifindex,
|
||||||
@ -78,7 +75,6 @@ void scan_get_results(struct l_genl_family *nl80211, uint32_t ifindex,
|
|||||||
msg = l_genl_msg_new_sized(NL80211_CMD_GET_SCAN, 8);
|
msg = l_genl_msg_new_sized(NL80211_CMD_GET_SCAN, 8);
|
||||||
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
||||||
l_genl_family_dump(nl80211, msg, callback, user_data, scan_done);
|
l_genl_family_dump(nl80211, msg, callback, user_data, scan_done);
|
||||||
l_genl_msg_unref(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
enum scan_ssid_security scan_get_ssid_security(
|
enum scan_ssid_security scan_get_ssid_security(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user