2014-07-29 21:25:01 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-07 08:52:42 +02:00
|
|
|
#include <stdint.h>
|
2014-07-29 21:25:01 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-05-16 19:21:26 +02:00
|
|
|
struct wiphy;
|
2017-01-20 06:49:40 +01:00
|
|
|
struct scan_bss;
|
2014-10-24 04:47:38 +02:00
|
|
|
|
2016-05-16 19:21:26 +02:00
|
|
|
enum ie_rsn_cipher_suite wiphy_select_cipher(struct wiphy *wiphy,
|
|
|
|
uint16_t mask);
|
|
|
|
|
2016-06-01 22:20:33 +02:00
|
|
|
struct wiphy *wiphy_find(int wiphy_id);
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
const char *wiphy_get_path(struct wiphy *wiphy);
|
2016-09-13 21:36:46 +02:00
|
|
|
uint32_t wiphy_get_supported_bands(struct wiphy *wiphy);
|
2017-01-20 06:49:40 +01:00
|
|
|
bool wiphy_can_connect(struct wiphy *wiphy, struct scan_bss *bss);
|
2016-07-12 04:13:54 +02:00
|
|
|
|
2017-03-16 22:45:10 +01:00
|
|
|
bool wiphy_init(struct l_genl_family *in, const char *whitelist,
|
|
|
|
const char *blacklist);
|
2014-07-29 21:25:01 +02:00
|
|
|
bool wiphy_exit(void);
|