096672b0aa
Renamed CW_... to CAPWAP_... FossilOrigin-Name: fa5322d9f5ca8a145cd828c1179501f50aad0cb6280efb76dc3779b19f2626e8
66 lines
1.3 KiB
C
66 lines
1.3 KiB
C
|
|
|
|
#include "action.h"
|
|
#include "capwap_80211_actions.h"
|
|
#include "capwap80211.h"
|
|
#include "capwap.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cw_action_in_t capwap_80211_actions_ac_in[] = {
|
|
|
|
/* --------------------------------------------------------
|
|
* Discovery Resquest
|
|
*/
|
|
|
|
{0, 0, CAPWAP_STATE_DISCOVERY, CAPWAP_MSG_DISCOVERY_REQUEST,
|
|
CW_ACTION_IN_80211_WTP_RADIO_INFORMATION, 1}
|
|
,
|
|
/* --------------------------------------------------------
|
|
* Discovery Resquest
|
|
*/
|
|
|
|
{0, 0, CW_STATE_JOIN, CAPWAP_MSG_JOIN_REQUEST,
|
|
CW_ACTION_IN_80211_WTP_RADIO_INFORMATION, 1}
|
|
,
|
|
|
|
|
|
|
|
{0, 0, 0}
|
|
};
|
|
|
|
|
|
cw_action_out_t capwap_80211_actions_ac_out[]={
|
|
/* Radio Infos */
|
|
{CAPWAP_MSG_DISCOVERY_RESPONSE, NULL /*CW_ELEM80211_WTP_RADIO_INFORMATION*/, 0,
|
|
CW_ELEM80211_WTP_RADIO_INFORMATION, NULL,cw_out_radio_infos, NULL,1}
|
|
,
|
|
|
|
/* Radio Infos */
|
|
{CAPWAP_MSG_JOIN_RESPONSE, NULL /*CW_ELEM80211_WTP_RADIO_INFORMATION*/, 0,
|
|
CW_ELEM80211_WTP_RADIO_INFORMATION, NULL,cw_out_radio_infos, NULL,1}
|
|
,
|
|
|
|
{0,0,0}
|
|
};
|
|
|
|
|
|
int cw_register_actions_capwap_80211_ac(struct cw_actiondef *def)
|
|
{
|
|
|
|
int rc;
|
|
rc=cw_actionlist_in_register_actions(def->in, capwap_80211_actions_ac_in);
|
|
rc+=cw_actionlist_out_register_actions(def->out, capwap_80211_actions_ac_out);
|
|
|
|
rc+= cw_strheap_register_strings(def->strelem, capwap_strings_elem80211);
|
|
/*rc += cw_strheap_register_strings(def->strelem, capwap_strings_elem);
|
|
*/
|
|
|
|
|
|
return rc;
|
|
}
|
|
|