No ECN support in Cisco mode

FossilOrigin-Name: 98bd151b54625fab8774ff13454d6182200c601482deb0d57fd3c131b83bd7bc
This commit is contained in:
7u83@mail.ru 2016-03-13 17:54:31 +00:00
parent 5ff2f9905f
commit 58e53b6c86
1 changed files with 14 additions and 1 deletions

View File

@ -76,7 +76,7 @@ static cw_action_out_t actions_out[]={
/* use draft 7 elem ids */
.msg_id = CW_MSG_JOIN_REQUEST,
.item_id = CW_ITEM_CAPWAP_LOCAL_IP_ADDRESS,
.out = cw_out_capwap_local_ip_address,
.out = cw_out_capwap_local_ip_address_7,
.mand = 1
}
,
@ -103,6 +103,19 @@ static cw_action_out_t actions_out[]={
}
,
/* ECN Support - Join Request */
{
/* Cisco doesn't know ECN support, so we
defaine no output method */
.msg_id = CW_MSG_JOIN_REQUEST,
.elem_id = CW_ELEM_ECN_SUPPORT,
.item_id = CW_ITEM_ECN_SUPPORT,
.mand = 0
}
,
{0,0}
};