freewtp/lib/element_wtprebootstat.c

89 lines
3.1 KiB
C
Raw Normal View History

2013-05-01 14:52:55 +02:00
#include "capwap.h"
2016-08-22 16:59:55 +02:00
#include "element.h"
2013-05-01 14:52:55 +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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reboot Count | AC Initiated Count |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Link Failure Count | SW Failure Count |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| HW Failure Count | Other Failure Count |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Unknown Failure Count |Last Failure Ty|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type: 48 for WTP Reboot Statistics
2013-05-01 14:52:55 +02:00
Length: 15
********************************************************************/
/* */
static void capwap_wtprebootstat_element_create(void* data, capwap_message_elements_handle handle, struct capwap_write_message_elements_ops* func) {
struct capwap_wtprebootstat_element* element = (struct capwap_wtprebootstat_element*)data;
2013-05-01 14:52:55 +02:00
ASSERT(data != NULL);
2013-05-01 14:52:55 +02:00
/* */
func->write_u16(handle, element->rebootcount);
func->write_u16(handle, element->acinitiatedcount);
func->write_u16(handle, element->linkfailurecount);
func->write_u16(handle, element->swfailurecount);
func->write_u16(handle, element->hwfailurecount);
func->write_u16(handle, element->otherfailurecount);
func->write_u16(handle, element->unknownfailurecount);
func->write_u8(handle, element->lastfailuretype);
2013-05-01 14:52:55 +02:00
}
/* */
static void* capwap_wtprebootstat_element_parsing(capwap_message_elements_handle handle, struct capwap_read_message_elements_ops* func) {
2013-05-01 14:52:55 +02:00
struct capwap_wtprebootstat_element* data;
ASSERT(handle != NULL);
ASSERT(func != NULL);
if (func->read_ready(handle) != 15) {
log_printf(LOG_DEBUG, "Invalid WTP Reboot Statistics element: underbuffer");
2013-05-01 14:52:55 +02:00
return NULL;
}
/* Retrieve data */
data = (struct capwap_wtprebootstat_element*)capwap_alloc(sizeof(struct capwap_wtprebootstat_element));
func->read_u16(handle, &data->rebootcount);
func->read_u16(handle, &data->acinitiatedcount);
func->read_u16(handle, &data->linkfailurecount);
func->read_u16(handle, &data->swfailurecount);
func->read_u16(handle, &data->hwfailurecount);
func->read_u16(handle, &data->otherfailurecount);
func->read_u16(handle, &data->unknownfailurecount);
func->read_u8(handle, &data->lastfailuretype);
2013-05-01 14:52:55 +02:00
return data;
}
2013-10-01 16:39:27 +02:00
/* */
static void* capwap_wtprebootstat_element_clone(void* data) {
ASSERT(data != NULL);
return capwap_clone(data, sizeof(struct capwap_wtprebootstat_element));
}
2013-05-01 14:52:55 +02:00
/* */
static void capwap_wtprebootstat_element_free(void* data) {
2013-05-01 14:52:55 +02:00
ASSERT(data != NULL);
capwap_free(data);
}
/* */
2016-03-07 18:07:46 +01:00
const struct capwap_message_elements_ops capwap_element_wtprebootstat_ops = {
.category = CAPWAP_MESSAGE_ELEMENT_SINGLE,
.create = capwap_wtprebootstat_element_create,
.parse = capwap_wtprebootstat_element_parsing,
.clone = capwap_wtprebootstat_element_clone,
.free = capwap_wtprebootstat_element_free
};