2013-05-11 15:07:30 +02:00
|
|
|
#include "capwap.h"
|
|
|
|
#include "capwap_element.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Radio ID | Reserved | Current Chan | Band Support |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| TI Threshold |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Type: 1033 for IEEE 802.11 OFDM Control
|
|
|
|
|
|
|
|
Length: 8
|
|
|
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_80211_ofdmcontrol_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
|
|
|
|
struct capwap_80211_ofdmcontrol_element* element = (struct capwap_80211_ofdmcontrol_element*)data;
|
2013-05-11 15:07:30 +02:00
|
|
|
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
/* */
|
|
|
|
func->write_u8(handle, element->radioid);
|
|
|
|
func->write_u8(handle, 0);
|
|
|
|
func->write_u8(handle, element->currentchannel);
|
|
|
|
func->write_u8(handle, element->bandsupport);
|
|
|
|
func->write_u32(handle, element->tithreshold);
|
2013-05-11 15:07:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void* capwap_80211_ofdmcontrol_element_parsing(capwap_message_elements_handle handle, struct capwap_read_message_elements_ops* func) {
|
2013-05-11 15:07:30 +02:00
|
|
|
struct capwap_80211_ofdmcontrol_element* data;
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
ASSERT(handle != NULL);
|
|
|
|
ASSERT(func != NULL);
|
2013-05-11 15:07:30 +02:00
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
if (func->read_ready(handle) != 8) {
|
|
|
|
capwap_logging_debug("Invalid IEEE 802.11 OFDM Control element");
|
2013-05-11 15:07:30 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
data = (struct capwap_80211_ofdmcontrol_element*)capwap_alloc(sizeof(struct capwap_80211_ofdmcontrol_element));
|
|
|
|
if (!data) {
|
|
|
|
capwap_outofmemory();
|
|
|
|
}
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
/* Retrieve data */
|
|
|
|
memset(data, 0, sizeof(struct capwap_80211_ofdmcontrol_element));
|
|
|
|
func->read_u8(handle, &data->radioid);
|
|
|
|
func->read_u8(handle, NULL);
|
|
|
|
func->read_u8(handle, &data->currentchannel);
|
|
|
|
func->read_u8(handle, &data->bandsupport);
|
|
|
|
func->read_u32(handle, &data->tithreshold);
|
|
|
|
|
2013-05-11 15:07:30 +02:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_80211_ofdmcontrol_element_free(void* data) {
|
2013-05-11 15:07:30 +02:00
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
capwap_free(data);
|
|
|
|
}
|
2013-05-27 21:33:23 +02:00
|
|
|
|
|
|
|
/* */
|
|
|
|
struct capwap_message_elements_ops capwap_element_80211_ofdmcontrol_ops = {
|
|
|
|
.create_message_element = capwap_80211_ofdmcontrol_element_create,
|
|
|
|
.parsing_message_element = capwap_80211_ofdmcontrol_element_parsing,
|
|
|
|
.free_parsed_message_element = capwap_80211_ofdmcontrol_element_free
|
|
|
|
};
|