3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00
iwd/src/wiphy.h

38 lines
1.2 KiB
C
Raw Normal View History

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
*
*/
#include <stdint.h>
2014-07-29 21:25:01 +02:00
#include <stdbool.h>
2016-05-16 19:21:26 +02:00
struct wiphy;
2016-05-31 19:57:24 +02:00
struct device;
2016-05-31 19:57:24 +02:00
typedef void (*iwd_device_foreach_func)(struct device *, void *data);
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);
2015-09-29 02:51:40 +02:00
bool wiphy_init(struct l_genl_family *in);
2014-07-29 21:25:01 +02:00
bool wiphy_exit(void);
2014-10-24 04:47:38 +02:00
void __iwd_device_foreach(iwd_device_foreach_func func, void *user_data);