2013-05-01 14:52:55 +02:00
|
|
|
#include "capwap.h"
|
|
|
|
#include "capwap_element.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
|
|
|
|
0 1
|
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Priority | AC Name...
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Type: 5 for AC Name with Priority
|
2013-05-27 21:33:23 +02:00
|
|
|
|
2013-05-01 14:52:55 +02:00
|
|
|
Length: >= 2
|
|
|
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_acnamepriority_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
|
|
|
|
struct capwap_acnamepriority_element* element = (struct capwap_acnamepriority_element*)data;
|
2013-05-01 14:52:55 +02:00
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
ASSERT(data != NULL);
|
2013-05-01 14:52:55 +02:00
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
func->write_u8(handle, element->priority);
|
|
|
|
func->write_block(handle, element->name, strlen((char*)element->name));
|
2013-05-01 14:52:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void* capwap_acnamepriority_element_parsing(capwap_message_elements_handle handle, struct capwap_read_message_elements_ops* func) {
|
|
|
|
unsigned short length;
|
2013-05-01 14:52:55 +02:00
|
|
|
struct capwap_acnamepriority_element* data;
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
ASSERT(handle != NULL);
|
|
|
|
ASSERT(func != NULL);
|
|
|
|
|
|
|
|
length = func->read_ready(handle) - 1;
|
|
|
|
if ((length < 1) || (length > CAPWAP_ACNAMEPRIORITY_MAXLENGTH)) {
|
|
|
|
capwap_logging_debug("Invalid AC Name Priority element");
|
2013-05-01 14:52:55 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
data = (struct capwap_acnamepriority_element*)capwap_alloc(sizeof(struct capwap_acnamepriority_element));
|
|
|
|
if (!data) {
|
|
|
|
capwap_outofmemory();
|
|
|
|
}
|
|
|
|
|
2013-05-27 21:33:23 +02:00
|
|
|
/* Retrieve data */
|
|
|
|
memset(data, 0, sizeof(struct capwap_acnamepriority_element));
|
|
|
|
func->read_u8(handle, &data->priority);
|
|
|
|
func->read_block(handle, data->name, length);
|
|
|
|
|
2013-05-01 14:52:55 +02:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2013-05-27 21:33:23 +02:00
|
|
|
static void capwap_acnamepriority_element_free(void* data) {
|
2013-05-01 14:52:55 +02:00
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
capwap_free(data);
|
|
|
|
}
|
2013-05-27 21:33:23 +02:00
|
|
|
|
|
|
|
/* */
|
|
|
|
struct capwap_message_elements_ops capwap_element_acnamepriority_ops = {
|
|
|
|
.create_message_element = capwap_acnamepriority_element_create,
|
|
|
|
.parsing_message_element = capwap_acnamepriority_element_parsing,
|
|
|
|
.free_parsed_message_element = capwap_acnamepriority_element_free
|
|
|
|
};
|