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 | Supported Rates...
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Type: 1040 for IEEE 802.11 Supported Rates
|
|
|
|
|
|
|
|
Length: >= 3
|
|
|
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_80211_supportedrates_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
|
|
|
|
struct capwap_80211_supportedrates_element* element = (struct capwap_80211_supportedrates_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_block(handle, element->supportedrates, element->supportedratescount);
|
2013-05-11 15:07:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void* capwap_80211_supportedrates_element_parsing(capwap_message_elements_handle handle, struct capwap_read_message_elements_ops* func) {
|
|
|
|
unsigned short length;
|
2013-05-11 15:07:30 +02:00
|
|
|
struct capwap_80211_supportedrates_element* data;
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
ASSERT(handle != NULL);
|
|
|
|
ASSERT(func != NULL);
|
|
|
|
|
|
|
|
length = func->read_ready(handle);
|
|
|
|
if (length < 3) {
|
|
|
|
capwap_logging_debug("Invalid IEEE 802.11 Supported Rates element");
|
2013-05-11 15:07:30 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
length -= 1;
|
|
|
|
if (length > CAPWAP_RATESET_MAXLENGTH) {
|
|
|
|
capwap_logging_debug("Invalid IEEE 802.11 Supported Rates element");
|
2013-05-11 15:07:30 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
data = (struct capwap_80211_supportedrates_element*)capwap_alloc(sizeof(struct capwap_80211_supportedrates_element));
|
2013-08-18 19:07:19 +02:00
|
|
|
memset(data, 0, sizeof(struct capwap_80211_supportedrates_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);
|
|
|
|
data->supportedratescount = length;
|
|
|
|
func->read_block(handle, data->supportedrates, length);
|
2013-05-11 15:07:30 +02:00
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-10-01 16:39:27 +02:00
|
|
|
/* */
|
|
|
|
static void* capwap_80211_supportedrates_element_clone(void* data) {
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
return capwap_clone(data, sizeof(struct capwap_80211_supportedrates_element));
|
|
|
|
}
|
|
|
|
|
2013-05-11 15:07:30 +02:00
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_80211_supportedrates_element_free(void* data) {
|
2013-05-11 15:07:30 +02:00
|
|
|
ASSERT(data != NULL);
|
2013-05-27 21:33:23 +02:00
|
|
|
|
2013-05-11 15:07:30 +02:00
|
|
|
capwap_free(data);
|
|
|
|
}
|
2013-05-27 21:33:23 +02:00
|
|
|
|
|
|
|
/* */
|
|
|
|
struct capwap_message_elements_ops capwap_element_80211_supportedrates_ops = {
|
|
|
|
.create_message_element = capwap_80211_supportedrates_element_create,
|
|
|
|
.parsing_message_element = capwap_80211_supportedrates_element_parsing,
|
2013-10-01 16:39:27 +02:00
|
|
|
.clone_message_element = capwap_80211_supportedrates_element_clone,
|
|
|
|
.free_message_element = capwap_80211_supportedrates_element_free
|
2013-05-27 21:33:23 +02:00
|
|
|
};
|