2018-10-08 22:44:09 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation. All rights reserved.
|
2018-10-08 22:44:09 +02:00
|
|
|
*
|
|
|
|
* 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 <ell/ell.h>
|
|
|
|
|
2019-09-20 04:29:27 +02:00
|
|
|
int nl80211_parse_attrs(struct l_genl_msg *msg, int tag, ...);
|
|
|
|
|
2018-10-08 22:44:09 +02:00
|
|
|
struct l_genl_msg *nl80211_build_new_key_group(uint32_t ifindex,
|
|
|
|
uint32_t cipher, uint8_t key_id,
|
|
|
|
const uint8_t *key, size_t key_len,
|
2018-10-08 22:44:12 +02:00
|
|
|
const uint8_t *ctr, size_t ctr_len,
|
|
|
|
const uint8_t *addr);
|
2018-10-08 22:44:09 +02:00
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_authorized(uint32_t ifindex,
|
|
|
|
const uint8_t *addr);
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_associated(uint32_t ifindex,
|
|
|
|
const uint8_t *addr);
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_unauthorized(uint32_t ifindex,
|
|
|
|
const uint8_t *addr);
|
2018-10-08 22:44:10 +02:00
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_key(uint32_t ifindex, uint8_t key_index);
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_get_key(uint32_t ifindex, uint8_t key_index);
|
2018-10-08 22:44:11 +02:00
|
|
|
|
|
|
|
const void *nl80211_parse_get_key_seq(struct l_genl_msg *msg);
|
2019-06-27 00:15:53 +02:00
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_cmd_frame(uint32_t ifindex,
|
|
|
|
const uint8_t *addr,
|
|
|
|
const uint8_t *to,
|
|
|
|
uint32_t freq,
|
|
|
|
struct iovec *iov,
|
|
|
|
size_t iov_len);
|