network: Add stub for network_info_has_hidden

This commit is contained in:
Tim Kourt 2018-06-27 16:33:05 -07:00 committed by Denis Kenzior
parent 41361053b3
commit ef5110869b
2 changed files with 6 additions and 0 deletions

View File

@ -1244,3 +1244,8 @@ void network_info_foreach(network_info_foreach_func_t function,
for (entry = l_queue_get_entries(networks); entry; entry = entry->next)
function(entry->data, user_data);
}
bool network_info_has_hidden(void)
{
return false;
}

View File

@ -79,3 +79,4 @@ bool network_info_add_known(const char *ssid, enum security security);
bool network_info_forget_known(const char *ssid, enum security security);
void network_info_foreach(network_info_foreach_func_t function,
void *user_data);
bool network_info_has_hidden(void);