Added some messages to mod capwap and cisco

FossilOrigin-Name: c23d2f78a03f983e68256d3b3c99141fbcbcf67774070d3964773abe1e1fe333
This commit is contained in:
7u83@mail.ru
2016-03-02 09:16:20 +00:00
parent f84cbc22af
commit 0ca7567d6d
3 changed files with 130 additions and 21 deletions

View File

@ -65,6 +65,38 @@ static cw_action_in_t actions_in[] = {
}
,
/* ----------------------------------
* Join Request
*/
/* Element WTP Descriptor - Join Request */
{
.capwap_state = CW_STATE_JOIN,
.msg_id = CW_MSG_JOIN_REQUEST,
.elem_id = CW_ELEM_WTP_DESCRIPTOR,
.start = cisco_in_wtp_descriptor,
.item_id = "wtp_descriptor",
.mand = 1,
}
,
/* Element Session ID - Join Request */
{
.capwap_state = CW_STATE_JOIN,
.msg_id = CW_MSG_JOIN_REQUEST,
.elem_id = CW_ELEM_SESSION_ID,
.start = cw_in_generic2,
.item_id = CW_ITEM_SESSION_ID,
.mand = 1,
.min_len = 4,
.max_len = 16
}
,
/* End of list */
{0, 0}
};
@ -95,6 +127,8 @@ static cw_action_out_t actions_out[]={
}
,
{0,0}