2013-06-01 19:43:28 +02:00
|
|
|
#include "capwap.h"
|
2016-08-22 16:59:55 +02:00
|
|
|
#include "element.h"
|
2013-06-01 19:43:28 +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
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
| Timestamp |
|
|
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
|
|
|
|
Type: 6 for AC Timestamp
|
|
|
|
|
|
|
|
Length: 4
|
|
|
|
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
/* */
|
|
|
|
static void capwap_actimestamp_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
|
|
|
|
struct capwap_actimestamp_element* element = (struct capwap_actimestamp_element*)data;
|
|
|
|
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
/* */
|
|
|
|
func->write_u32(handle, element->timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
static void* capwap_actimestamp_element_parsing(capwap_message_elements_handle handle, struct capwap_read_message_elements_ops* func) {
|
|
|
|
struct capwap_actimestamp_element* data;
|
|
|
|
|
|
|
|
ASSERT(handle != NULL);
|
|
|
|
ASSERT(func != NULL);
|
|
|
|
|
|
|
|
if (func->read_ready(handle) != 4) {
|
2016-03-30 14:47:57 +02:00
|
|
|
log_printf(LOG_DEBUG, "Invalid AC Timestamp element: underbuffer");
|
2013-06-01 19:43:28 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrieve data */
|
2013-08-18 19:07:19 +02:00
|
|
|
data = (struct capwap_actimestamp_element*)capwap_alloc(sizeof(struct capwap_actimestamp_element));
|
2013-06-01 19:43:28 +02:00
|
|
|
func->read_u32(handle, &data->timestamp);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-10-01 16:39:27 +02:00
|
|
|
/* */
|
|
|
|
static void* capwap_actimestamp_element_clone(void* data) {
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
return capwap_clone(data, sizeof(struct capwap_actimestamp_element));
|
|
|
|
}
|
|
|
|
|
2013-06-01 19:43:28 +02:00
|
|
|
/* */
|
|
|
|
static void capwap_actimestamp_element_free(void* data) {
|
|
|
|
ASSERT(data != NULL);
|
|
|
|
|
|
|
|
capwap_free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
2016-03-07 18:07:46 +01:00
|
|
|
const struct capwap_message_elements_ops capwap_element_actimestamp_ops = {
|
2016-03-07 18:08:35 +01:00
|
|
|
.category = CAPWAP_MESSAGE_ELEMENT_SINGLE,
|
2016-03-07 17:12:48 +01:00
|
|
|
.create = capwap_actimestamp_element_create,
|
|
|
|
.parse = capwap_actimestamp_element_parsing,
|
|
|
|
.clone = capwap_actimestamp_element_clone,
|
|
|
|
.free = capwap_actimestamp_element_free
|
2013-06-01 19:43:28 +02:00
|
|
|
};
|