mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-06 03:59:22 +01:00
c3f863f2da
knownnetworks.c/.h implements the KnownNetworks interface and loads the known networks from storage on startup. The list of all the networks including information on whether a network is known is managed in network.c to avoid having two separate lists of network_info structures and keeping them in sync. That turns out to be difficult because the network.c list is sorted by connected_time and connected_time changes can be triggered in both network.c or knownnetworks.c. Both can also trigger a network_info to be removed completely.
25 lines
926 B
C
25 lines
926 B
C
/*
|
|
*
|
|
* Wireless daemon for Linux
|
|
*
|
|
* Copyright (C) 2016 Intel Corporation. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
bool known_networks_init(void);
|
|
void known_networks_exit(void);
|