WTP sends now CAPWAP_LOCAL_IP_ADDRESS in Join Req
FossilOrigin-Name: 13f087705dd79d06c77982797579f0078d3f863117a3a3320540876ddc9023ef
This commit is contained in:
@ -251,13 +251,13 @@ static cw_action_out_t actions_out[] = {
|
||||
}
|
||||
,
|
||||
|
||||
/* WTP MAC Type - Join Request */
|
||||
/* Session ID - Join Request */
|
||||
{
|
||||
.msg_id = CW_MSG_JOIN_REQUEST,
|
||||
.elem_id = CW_ELEM_WTP_MAC_TYPE,
|
||||
.item_id = CW_ITEM_WTP_MAC_TYPE,
|
||||
.elem_id = CW_ELEM_SESSION_ID,
|
||||
.item_id = CW_ITEM_SESSION_ID,
|
||||
.out = cw_out_generic,
|
||||
.get = cw_out_get_local,
|
||||
.get = cw_out_get_session_id,
|
||||
.mand = 1
|
||||
}
|
||||
,
|
||||
@ -273,17 +273,42 @@ static cw_action_out_t actions_out[] = {
|
||||
}
|
||||
,
|
||||
|
||||
/* Session ID - Join Request */
|
||||
|
||||
/* WTP MAC Type - Join Request */
|
||||
{
|
||||
.msg_id = CW_MSG_JOIN_REQUEST,
|
||||
.elem_id = CW_ELEM_SESSION_ID,
|
||||
.item_id = CW_ITEM_SESSION_ID,
|
||||
.elem_id = CW_ELEM_WTP_MAC_TYPE,
|
||||
.item_id = CW_ITEM_WTP_MAC_TYPE,
|
||||
.out = cw_out_generic,
|
||||
.get = cw_out_get_session_id,
|
||||
.get = cw_out_get_local,
|
||||
.mand = 1
|
||||
}
|
||||
,
|
||||
|
||||
/* ECN Support - Join Request */
|
||||
{
|
||||
.msg_id = CW_MSG_JOIN_REQUEST,
|
||||
.elem_id = CW_ELEM_ECN_SUPPORT,
|
||||
.item_id = CW_ITEM_ECN_SUPPORT,
|
||||
.out = cw_out_generic,
|
||||
.get = cw_out_get_config,
|
||||
.mand = 1
|
||||
}
|
||||
,
|
||||
|
||||
/* CAPWAP Local IP Address - Join Request */
|
||||
{
|
||||
.msg_id = CW_MSG_JOIN_REQUEST,
|
||||
.item_id = CW_ITEM_CAPWAP_LOCAL_IP_ADDRESS,
|
||||
.out = cw_out_capwap_local_ip_address,
|
||||
// .get = cw_out_get_config,
|
||||
.mand = 1
|
||||
}
|
||||
,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------
|
||||
* Configuration Status Request - Out
|
||||
|
Reference in New Issue
Block a user