Initial commit

FossilOrigin-Name: 38104cd3acecc11898ae7d17fe1b730770120df8a04c4e6191460ba380564a6a
This commit is contained in:
7u83@mail.ru
2016-03-08 18:57:19 +00:00
parent a84a82e510
commit 02095ef5a3
3 changed files with 81 additions and 104 deletions

View File

@ -0,0 +1,80 @@
#include "cw/action.h"
#include "cw/cw.h"
#include "cw/capwap.h"
#include "cw/capwap80211.h"
//#include "capwap_80211_actions.h"
//#include "capwap_80211.h"
//#include "capwap.h"
static cw_action_in_t actions_ac_in[] = {
/* --------------------------------------------------------
* Discovery Resquest
*/
/* Element Discovery Type */
{
.capwap_state = CW_STATE_DISCOVERY,
.msg_id = CW_MSG_DISCOVERY_REQUEST,
.elem_id = CW_ELEM80211_WTP_RADIO_INFORMATION,
.item_id = "radio_information",
.start = cw_in_radio_generic,
.mand = 1,
.min_len = 5,
.max_len = 5
}
,
// {0, 0, CW_STATE_DISCOVERY, CW_MSG_DISCOVERY_REQUEST,
// CW_ACTION_IN_80211_WTP_RADIO_INFORMATION, 1}
/* --------------------------------------------------------
* Discovery Resquest
*/
// {0, 0, CW_STATE_JOIN, CW_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 */
// {CW_MSG_DISCOVERY_RESPONSE, NULL /*CW_ELEM80211_WTP_RADIO_INFORMATION*/, 0,
// CW_ELEM80211_WTP_RADIO_INFORMATION, NULL,cw_out_radio_infos, NULL,1}
/* Radio Infos */
// {CW_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 capwap80211_register_actions_ac(struct cw_actiondef *def)
{
int rc;
rc=cw_actionlist_in_register_actions(def->in, 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;
}

View File

@ -35,8 +35,7 @@ static int detect(struct conn *conn, const uint8_t * rawmsg, int rawlen, int ele
static int register_actions(struct cw_actiondef *actions)
{
return 0;
return capwap80211_register_actions_ac(actions);
}
static struct mod_ac capwap80211_ac = {