Added Join Request

FossilOrigin-Name: c2c545d247623d9d183c23bf5b1ff85fccf234c6725b16bee937daa770bea713
This commit is contained in:
7u83@mail.ru 2016-03-01 08:50:13 +00:00
parent 85fa7955e1
commit 31ab5e0989

View File

@ -107,7 +107,8 @@ static cw_action_in_t actions_in[] = {
.msg_id = CW_MSG_DISCOVERY_REQUEST,
.elem_id = CW_ELEM_VENDOR_SPECIFIC_PAYLOAD,
.start = cw_in_vendor_specific_payload
},
}
,
/* Element WTP Name */
@ -124,6 +125,32 @@ static cw_action_in_t actions_in[] = {
,
*/
/* ---------------------------------------------------------------------------
* Join Request
*/
{
.capwap_state = CW_STATE_JOIN,
.msg_id = CW_MSG_JOIN_REQUEST,
.end = cw_in_check_join_req
}
,
/* Location Data - Join Request */
{
.capwap_state = CW_STATE_JOIN,
.msg_id =CW_MSG_JOIN_REQUEST,
.elem_id = CW_ELEM_LOCATION_DATA,
.item_id = "location_data",
.start = cw_in_generic,
.max_len = 1024,
.min_len = 1
}
,
/* End of list */
{0, 0}
};