iwd/src/wiphy.h

38 lines
1.3 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>
struct netdev;
2014-10-24 04:47:38 +02:00
typedef void (*iwd_device_foreach_func)(struct netdev *, void *data);
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);
void wiphy_notify_dellink(uint32_t index);
bool __iwd_device_append_properties(struct netdev *netdev,
struct l_dbus_message_builder *builder);
2014-10-24 04:47:38 +02:00
void __iwd_device_foreach(iwd_device_foreach_func func, void *user_data);