mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-05 12:52:37 +01:00
knownnetworks: add get_file_path op
Gets the provisioning file path stored on disk
This commit is contained in:
parent
f3db34aadf
commit
3b49a57bda
@ -176,6 +176,11 @@ static const char *known_network_get_type(const struct network_info *info)
|
|||||||
return security_to_str(info->type);
|
return security_to_str(info->type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char *known_network_get_file_path(const struct network_info *info)
|
||||||
|
{
|
||||||
|
return storage_get_network_file_path(info->type, info->ssid);
|
||||||
|
}
|
||||||
|
|
||||||
static struct network_info_ops known_network_ops = {
|
static struct network_info_ops known_network_ops = {
|
||||||
.open = known_network_open,
|
.open = known_network_open,
|
||||||
.touch = known_network_touch,
|
.touch = known_network_touch,
|
||||||
@ -185,6 +190,7 @@ static struct network_info_ops known_network_ops = {
|
|||||||
.get_path = known_network_get_path,
|
.get_path = known_network_get_path,
|
||||||
.get_name = known_network_get_name,
|
.get_name = known_network_get_name,
|
||||||
.get_type = known_network_get_type,
|
.get_type = known_network_get_type,
|
||||||
|
.get_file_path = known_network_get_file_path,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct l_settings *network_info_open_settings(struct network_info *info)
|
struct l_settings *network_info_open_settings(struct network_info *info)
|
||||||
|
@ -41,6 +41,7 @@ struct network_info_ops {
|
|||||||
const struct iovec *(*get_extra_ies)(const struct network_info *info,
|
const struct iovec *(*get_extra_ies)(const struct network_info *info,
|
||||||
struct scan_bss *bss,
|
struct scan_bss *bss,
|
||||||
size_t *num_elems);
|
size_t *num_elems);
|
||||||
|
char *(*get_file_path)(const struct network_info *info);
|
||||||
|
|
||||||
bool (*match_hessid)(const struct network_info *info,
|
bool (*match_hessid)(const struct network_info *info,
|
||||||
const uint8_t *hessid);
|
const uint8_t *hessid);
|
||||||
|
Loading…
Reference in New Issue
Block a user