iwd/src/wiphy.h

35 lines
1.1 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;
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);
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);