2015-06-18 12:18:26 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2015 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device;
|
2016-05-28 05:27:13 +02:00
|
|
|
struct network;
|
2016-06-14 18:14:45 +02:00
|
|
|
struct scan_bss;
|
2016-05-12 04:59:03 +02:00
|
|
|
|
2016-06-10 11:50:22 +02:00
|
|
|
bool network_seen(struct network *network, struct timespec *when);
|
2016-05-28 05:27:13 +02:00
|
|
|
bool network_connected(struct network *network);
|
2016-06-09 19:55:18 +02:00
|
|
|
void network_disconnected(struct network *network);
|
2016-06-09 19:55:20 +02:00
|
|
|
bool network_rankmod(const struct network *network, double *rankmod);
|
2015-06-18 12:18:26 +02:00
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
struct network *network_create(struct device *device,
|
2016-05-16 04:11:01 +02:00
|
|
|
uint8_t *ssid, uint8_t ssid_len,
|
|
|
|
enum security security);
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
const char *network_get_ssid(const struct network *network);
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device *network_get_device(const struct network *network);
|
2016-05-28 05:27:12 +02:00
|
|
|
const char *network_get_path(const struct network *network);
|
|
|
|
enum security network_get_security(const struct network *network);
|
|
|
|
const unsigned char *network_get_psk(const struct network *network);
|
2016-06-09 19:55:22 +02:00
|
|
|
int network_get_signal_strength(const struct network *network);
|
2016-05-28 05:27:12 +02:00
|
|
|
struct l_settings *network_get_settings(const struct network *network);
|
2016-05-12 05:00:58 +02:00
|
|
|
|
2016-05-16 03:47:41 +02:00
|
|
|
bool network_settings_load(struct network *network);
|
|
|
|
void network_settings_close(struct network *network);
|
2016-05-16 04:04:02 +02:00
|
|
|
void network_sync_psk(struct network *network);
|
2016-05-16 22:43:32 +02:00
|
|
|
|
2016-05-16 21:24:21 +02:00
|
|
|
int network_autoconnect(struct network *network, struct scan_bss *bss);
|
2016-05-16 22:43:32 +02:00
|
|
|
void network_connect_failed(struct network *network);
|
2016-05-16 23:06:41 +02:00
|
|
|
bool network_bss_add(struct network *network, struct scan_bss *bss);
|
2016-05-16 23:13:36 +02:00
|
|
|
bool network_bss_list_isempty(struct network *network);
|
2016-05-16 23:13:52 +02:00
|
|
|
void network_bss_list_clear(struct network *network);
|
2016-05-16 03:47:41 +02:00
|
|
|
|
2016-05-16 04:30:10 +02:00
|
|
|
bool network_register(struct network *network, const char *path);
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
void network_remove(struct network *network, int reason);
|
2016-05-16 04:37:12 +02:00
|
|
|
|
2015-06-18 12:18:26 +02:00
|
|
|
void network_init();
|
|
|
|
void network_exit();
|
2016-06-10 11:50:20 +02:00
|
|
|
|
|
|
|
int network_rank_compare(const void *a, const void *b, void *user);
|
|
|
|
void network_rank_update(struct network *network);
|