2016-04-06 12:42:09 -04:00
|
|
|
/*
|
|
|
|
* hostapd / Radio Measurement (RRM)
|
|
|
|
* Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
|
|
|
|
* Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RRM_H
|
|
|
|
#define RRM_H
|
|
|
|
|
2016-04-06 12:42:12 -04:00
|
|
|
/*
|
|
|
|
* Max measure request length is 255, -6 of the body we have 249 for the
|
|
|
|
* neighbor report elements. Each neighbor report element is at least 2 + 13
|
|
|
|
* bytes, so we can't have more than 16 responders in the request.
|
|
|
|
*/
|
|
|
|
#define RRM_RANGE_REQ_MAX_RESPONDERS 16
|
|
|
|
|
2016-04-06 12:42:09 -04:00
|
|
|
void hostapd_handle_radio_measurement(struct hostapd_data *hapd,
|
|
|
|
const u8 *buf, size_t len);
|
2016-04-06 12:42:11 -04:00
|
|
|
int hostapd_send_lci_req(struct hostapd_data *hapd, const u8 *addr);
|
2016-04-06 12:42:12 -04:00
|
|
|
int hostapd_send_range_req(struct hostapd_data *hapd, const u8 *addr,
|
|
|
|
u16 random_interval, u8 min_ap,
|
|
|
|
const u8 *responders, unsigned int n_responders);
|
2016-04-06 12:42:11 -04:00
|
|
|
void hostapd_clean_rrm(struct hostapd_data *hapd);
|
2016-04-06 12:42:09 -04:00
|
|
|
|
|
|
|
#endif /* RRM_H */
|