5f5fccb14f
a# Please enter the commit message for your changes. Lines starting FossilOrigin-Name: c126f130f351f7103d1594a42255a1affd24061a75cf0cfeb129a92a8d2fb2a1
138 lines
2.9 KiB
C
138 lines
2.9 KiB
C
|
|
|
|
#include "cw/action.h"
|
|
#include "cw/cw.h"
|
|
#include "cw/capwap.h"
|
|
#include "cw/capwap80211.h"
|
|
#include "cw/capwap_items.h"
|
|
#include "cw/capwap80211_items.h"
|
|
#include "cw/radio.h"
|
|
|
|
|
|
|
|
|
|
static cw_action_in_t actions_wtp_in[] = {
|
|
|
|
/* --------------------------------------------------------
|
|
* Discovery Response
|
|
*/
|
|
|
|
/* 802.11 Radio Inmformation - Discovery Response */
|
|
{
|
|
.capwap_state = CAPWAP_STATE_DISCOVERY,
|
|
.msg_id = CAPWAP_MSG_DISCOVERY_RESPONSE,
|
|
.elem_id = CAPWAP80211_ELEM_WTP_RADIO_INFORMATION,
|
|
.item_id = CW_RADIOITEM80211_WTP_RADIO_INFORMATION,
|
|
// .start = cw_in_radio_generic,
|
|
.mand = 1,
|
|
.min_len = 5,
|
|
.max_len = 5
|
|
}
|
|
,
|
|
|
|
/* --------------------------------------------------------
|
|
* Join Response
|
|
*/
|
|
|
|
/* 802.11 Radio Inmformation - Join Response */
|
|
{
|
|
.capwap_state = CAPWAP_STATE_JOIN,
|
|
.msg_id = CAPWAP_MSG_JOIN_RESPONSE,
|
|
.elem_id = CAPWAP80211_ELEM_WTP_RADIO_INFORMATION,
|
|
.item_id = CW_RADIOITEM80211_WTP_RADIO_INFORMATION,
|
|
// .start = cw_in_radio_generic,
|
|
.mand = 1,
|
|
.min_len = 5,
|
|
.max_len = 5
|
|
}
|
|
,
|
|
|
|
/* --------------------------------------------------------
|
|
* Configuration Status Response
|
|
*/
|
|
|
|
/* Rate Set - Config Status Resp */
|
|
{
|
|
.capwap_state = CW_STATE_CONFIGURE,
|
|
.msg_id = CAPWAP_MSG_CONFIGURATION_STATUS_RESPONSE,
|
|
.elem_id = CW_ELEM80211_RATE_SET,
|
|
.item_id = CW_RADIOITEM80211_RATE_SET,
|
|
.start = cw_in_radio_generic
|
|
}
|
|
|
|
|
|
,
|
|
|
|
{0, 0, 0}
|
|
};
|
|
|
|
|
|
cw_action_out_t actions_out[]={
|
|
/* Discovery Request */
|
|
|
|
/* 802.11 Radio Information - Discovery Request */
|
|
{
|
|
.msg_id = CAPWAP_MSG_DISCOVERY_REQUEST,
|
|
.item_id = CW_ITEM_RADIO_INFOS ,
|
|
.elem_id = CAPWAP80211_ELEM_WTP_RADIO_INFORMATION,
|
|
.out = cw_out_radio_infos,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
/* Join Request */
|
|
|
|
/* 802.11 Radio Information - Join Request */
|
|
{
|
|
.msg_id = CAPWAP_MSG_JOIN_REQUEST,
|
|
.item_id = CW_ITEM_RADIO_INFOS ,
|
|
.elem_id = CAPWAP80211_ELEM_WTP_RADIO_INFORMATION,
|
|
.out = cw_out_radio_infos,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
/* --------------------------------------------------------
|
|
* Config Status Request
|
|
*/
|
|
/* 802.11 Radio Information */
|
|
{
|
|
.msg_id = CAPWAP_MSG_CONFIGURATION_STATUS_REQUEST,
|
|
.item_id = CW_RADIO_SUPPORTED_RATES ,
|
|
.elem_id = CW_ELEM80211_SUPPORTED_RATES,
|
|
.out = cw_out_80211_supported_rates,
|
|
.mand = 0
|
|
}
|
|
,
|
|
|
|
|
|
/* --------------------------------------------------------
|
|
* Config Status Update Request
|
|
*/
|
|
|
|
|
|
|
|
{0,0,0}
|
|
};
|
|
|
|
|
|
int capwap80211_register_actions_wtp(struct cw_actiondef *def)
|
|
{
|
|
|
|
int rc;
|
|
rc=cw_actionlist_in_register_actions(def->in, actions_wtp_in);
|
|
rc+=cw_actionlist_out_register_actions(def->out, actions_out);
|
|
|
|
rc+= cw_strheap_register_strings(def->strelem, capwap_strings_elem80211);
|
|
|
|
rc += cw_itemdefheap_register(def->items,capwap80211_itemdefs);
|
|
rc += cw_itemdefheap_register(def->radioitems,capwap80211_radioitemdefs);
|
|
|
|
/*rc += cw_strheap_register_strings(def->strelem, capwap_strings_elem);
|
|
*/
|
|
|
|
|
|
return rc;
|
|
}
|
|
|