2013-05-11 15:07:30 +02:00
|
|
|
#include "capwap.h"
|
2016-08-22 16:59:55 +02:00
|
|
|
#include "element.h"
|
2013-05-11 15:07:30 +02:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
|
|
|
|
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 | Current CCA |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Energy Detect Threshold |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Type: 1028 for IEEE 802.11 Direct Sequence Control
|
|
|
|
|
|
|
|
Length: 8
|
|
|
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_80211_directsequencecontrol_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
|
|
|
|
struct capwap_80211_directsequencecontrol_element* element = (struct capwap_80211_directsequencecontrol_element*)data;
|
2013-05-11 15:07:30 +02:00
|
|
|
|
|
|
|
ASSERT(data != NULL);
|
2013-09-22 22:28:07 +02:00
|
|
|
ASSERT(IS_VALID_RADIOID(element->radioid));
|
2013-05-11 15:07:30 +02:00
|
|
|
|
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->currentcca);
|
|
|
|
func->write_u32(handle, element->enerydetectthreshold);
|
2013-05-11 15:07:30 +02:00
|
|
|
}
|
|
|
|
|
2013-10-01 16:39:27 +02:00
|
|
|
/* */
|
|
|
|
static void* capwap_80211_directsequencecontrol_element_clone(void* data) {
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
return capwap_clone(data, sizeof(struct capwap_80211_directsequencecontrol_element));
|
|
|
|
}
|
|
|
|
|
2013-09-22 22:28:07 +02:00
|
|
|
/* */
|
|
|
|
static void capwap_80211_directsequencecontrol_element_free(void* data) {
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
capwap_free(data);
|
|
|
|
}
|
|
|
|
|
2013-05-11 15:07:30 +02:00
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void* capwap_80211_directsequencecontrol_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_directsequencecontrol_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) {
|
2016-03-30 14:47:57 +02:00
|
|
|
log_printf(LOG_DEBUG, "Invalid IEEE 802.11 Direct Sequence Control element");
|
2013-05-11 15:07:30 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
data = (struct capwap_80211_directsequencecontrol_element*)capwap_alloc(sizeof(struct capwap_80211_directsequencecontrol_element));
|
2013-08-18 19:07:19 +02:00
|
|
|
memset(data, 0, sizeof(struct capwap_80211_directsequencecontrol_element));
|
2013-05-11 15:07:30 +02:00
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
/* Retrieve data */
|
|
|
|
func->read_u8(handle, &data->radioid);
|
2013-09-22 22:28:07 +02:00
|
|
|
if (!IS_VALID_RADIOID(data->radioid)) {
|
|
|
|
capwap_80211_directsequencecontrol_element_free((void*)data);
|
2016-03-30 14:47:57 +02:00
|
|
|
log_printf(LOG_DEBUG, "Invalid IEEE 802.11 Direct Sequence Control element: invalid radio");
|
2013-09-22 22:28:07 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
func->read_u8(handle, NULL);
|
|
|
|
func->read_u8(handle, &data->currentchannel);
|
|
|
|
func->read_u8(handle, &data->currentcca);
|
|
|
|
func->read_u32(handle, &data->enerydetectthreshold);
|
|
|
|
|
2013-05-11 15:07:30 +02:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
/* */
|
2016-03-07 18:07:46 +01:00
|
|
|
const struct capwap_message_elements_ops capwap_element_80211_directsequencecontrol_ops = {
|
2016-03-07 18:08:35 +01:00
|
|
|
.category = CAPWAP_MESSAGE_ELEMENT_ARRAY,
|
2016-03-07 17:12:48 +01:00
|
|
|
.create = capwap_80211_directsequencecontrol_element_create,
|
|
|
|
.parse = capwap_80211_directsequencecontrol_element_parsing,
|
|
|
|
.clone = capwap_80211_directsequencecontrol_element_clone,
|
|
|
|
.free = capwap_80211_directsequencecontrol_element_free
|
2013-05-27 21:33:23 +02:00
|
|
|
};
|