diff --git a/src/mod/capwap/capwap_actions_ac.c b/src/mod/capwap/capwap_actions_ac.c index f5a49295..6480569d 100644 --- a/src/mod/capwap/capwap_actions_ac.c +++ b/src/mod/capwap/capwap_actions_ac.c @@ -526,7 +526,16 @@ static cw_action_in_t actions_in[] = { } , - + /* -------------------------------------------------------------------------- + * Configuration Update Response + */ + { + .capwap_state=CW_STATE_RUN, + .msg_id = CW_MSG_CONFIGURATION_UPDATE_RESPONSE, + } + , + + /* End of list */ {0, 0} @@ -695,6 +704,35 @@ static cw_action_out_t actions_out[]={ , + /* -------------------------------------------------------------------------- + * Configuration Update Request - OUT + */ + + /* Location Data */ + { + .msg_id = CW_MSG_CONFIGURATION_UPDATE_REQUEST, + .elem_id = CW_ELEM_LOCATION_DATA, + .item_id = CW_ITEM_LOCATION_DATA, + .out = cw_out_generic, + .get = cw_out_get_outgoing, + .mand = 0 + } + , + + /* WTP Name */ + { + .msg_id = CW_MSG_CONFIGURATION_UPDATE_REQUEST, + .elem_id = CW_ELEM_WTP_NAME, + .item_id = CW_ITEM_WTP_NAME, + .out = cw_out_generic, + .get = cw_out_get_outgoing, + .mand = 0 + } + , + + + + {0,0} };