freewtp/src/common/capwap_element_radiooprstate.h

23 lines
686 B
C

#ifndef __CAPWAP_ELEMENT_RADIOOPRSTATE_HEADER__
#define __CAPWAP_ELEMENT_RADIOOPRSTATE_HEADER__
#define CAPWAP_ELEMENT_RADIOOPRSTATE 32
#define CAPWAP_RADIO_OPERATIONAL_STATE_ENABLED 1
#define CAPWAP_RADIO_OPERATIONAL_STATE_DISABLED 2
#define CAPWAP_RADIO_OPERATIONAL_CAUSE_NORMAL 0
#define CAPWAP_RADIO_OPERATIONAL_CAUSE_RADIOFAILURE 1
#define CAPWAP_RADIO_OPERATIONAL_CAUSE_SOFTWAREFAILURE 2
#define CAPWAP_RADIO_OPERATIONAL_CAUSE_ADMINSET 3
struct capwap_radiooprstate_element {
uint8_t radioid;
uint8_t state;
uint8_t cause;
};
extern struct capwap_message_elements_ops capwap_element_radiooprstate_ops;
#endif /* __CAPWAP_ELEMENT_RADIOOPRSTATE_HEADER__ */