Add Configure Status and Data Check Event control message into Capwap DFA
This commit is contained in:
parent
17a0bb2f5f
commit
aafe37dc8d
@ -10,9 +10,9 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
int i;
|
int i;
|
||||||
const char* jsonmessage;
|
const char* jsonmessage;
|
||||||
char* base64confstatus;
|
char* base64confstatus;
|
||||||
struct json_object* jarray;
|
struct json_object* jsonarray;
|
||||||
struct json_object* jsonparam;
|
struct json_object* jsonparam;
|
||||||
struct json_object* jhash;
|
struct json_object* jsonhash;
|
||||||
struct capwap_array* elemarray;
|
struct capwap_array* elemarray;
|
||||||
struct capwap_statisticstimer_element* statisticstimer;
|
struct capwap_statisticstimer_element* statisticstimer;
|
||||||
struct capwap_wtprebootstat_element* wtprebootstat;
|
struct capwap_wtprebootstat_element* wtprebootstat;
|
||||||
@ -59,46 +59,46 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
jsonparam = json_object_new_object();
|
jsonparam = json_object_new_object();
|
||||||
|
|
||||||
/* RadioAdministrativeState */
|
/* RadioAdministrativeState */
|
||||||
jarray = json_object_new_array();
|
jsonarray = json_object_new_array();
|
||||||
elemarray = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RADIOADMSTATE);
|
elemarray = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RADIOADMSTATE);
|
||||||
for (i = 0; i < elemarray->count; i++) {
|
for (i = 0; i < elemarray->count; i++) {
|
||||||
json_object* jradioadm;
|
json_object* jsonradioadm;
|
||||||
struct capwap_radioadmstate_element* radioadm = *(struct capwap_radioadmstate_element**)capwap_array_get_item_pointer(elemarray, i);
|
struct capwap_radioadmstate_element* radioadm = *(struct capwap_radioadmstate_element**)capwap_array_get_item_pointer(elemarray, i);
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
jradioadm = json_object_new_object();
|
jsonradioadm = json_object_new_object();
|
||||||
json_object_object_add(jradioadm, "RadioID", json_object_new_int((int)radioadm->radioid));
|
json_object_object_add(jsonradioadm, "RadioID", json_object_new_int((int)radioadm->radioid));
|
||||||
json_object_object_add(jradioadm, "AdminState", json_object_new_int((int)radioadm->state));
|
json_object_object_add(jsonradioadm, "AdminState", json_object_new_int((int)radioadm->state));
|
||||||
json_object_array_add(jarray, jradioadm);
|
json_object_array_add(jsonarray, jsonradioadm);
|
||||||
}
|
}
|
||||||
|
|
||||||
json_object_object_add(jsonparam, "RadioAdministrativeState", jarray);
|
json_object_object_add(jsonparam, "RadioAdministrativeState", jsonarray);
|
||||||
|
|
||||||
/* StatisticsTimer */
|
/* StatisticsTimer */
|
||||||
statisticstimer = (struct capwap_statisticstimer_element*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_STATISTICSTIMER);
|
statisticstimer = (struct capwap_statisticstimer_element*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_STATISTICSTIMER);
|
||||||
|
|
||||||
jhash = json_object_new_object();
|
jsonhash = json_object_new_object();
|
||||||
json_object_object_add(jhash, "StatisticsTimer", json_object_new_int((int)statisticstimer->timer));
|
json_object_object_add(jsonhash, "StatisticsTimer", json_object_new_int((int)statisticstimer->timer));
|
||||||
json_object_object_add(jsonparam, "StatisticsTimer", jhash);
|
json_object_object_add(jsonparam, "StatisticsTimer", jsonhash);
|
||||||
|
|
||||||
/* WTPRebootStatistics */
|
/* WTPRebootStatistics */
|
||||||
wtprebootstat = (struct capwap_wtprebootstat_element*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_WTPREBOOTSTAT);
|
wtprebootstat = (struct capwap_wtprebootstat_element*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_WTPREBOOTSTAT);
|
||||||
|
|
||||||
jhash = json_object_new_object();
|
jsonhash = json_object_new_object();
|
||||||
json_object_object_add(jhash, "RebootCount", json_object_new_int((int)wtprebootstat->rebootcount));
|
json_object_object_add(jsonhash, "RebootCount", json_object_new_int((int)wtprebootstat->rebootcount));
|
||||||
json_object_object_add(jhash, "ACInitiatedCount", json_object_new_int((int)wtprebootstat->acinitiatedcount));
|
json_object_object_add(jsonhash, "ACInitiatedCount", json_object_new_int((int)wtprebootstat->acinitiatedcount));
|
||||||
json_object_object_add(jhash, "LinkFailureCount", json_object_new_int((int)wtprebootstat->linkfailurecount));
|
json_object_object_add(jsonhash, "LinkFailureCount", json_object_new_int((int)wtprebootstat->linkfailurecount));
|
||||||
json_object_object_add(jhash, "SWFailureCount", json_object_new_int((int)wtprebootstat->swfailurecount));
|
json_object_object_add(jsonhash, "SWFailureCount", json_object_new_int((int)wtprebootstat->swfailurecount));
|
||||||
json_object_object_add(jhash, "HWFailureCount", json_object_new_int((int)wtprebootstat->hwfailurecount));
|
json_object_object_add(jsonhash, "HWFailureCount", json_object_new_int((int)wtprebootstat->hwfailurecount));
|
||||||
json_object_object_add(jhash, "OtherFailureCount", json_object_new_int((int)wtprebootstat->otherfailurecount));
|
json_object_object_add(jsonhash, "OtherFailureCount", json_object_new_int((int)wtprebootstat->otherfailurecount));
|
||||||
json_object_object_add(jhash, "UnknownFailureCount", json_object_new_int((int)wtprebootstat->unknownfailurecount));
|
json_object_object_add(jsonhash, "UnknownFailureCount", json_object_new_int((int)wtprebootstat->unknownfailurecount));
|
||||||
json_object_object_add(jhash, "LastFailureType", json_object_new_int((int)wtprebootstat->lastfailuretype));
|
json_object_object_add(jsonhash, "LastFailureType", json_object_new_int((int)wtprebootstat->lastfailuretype));
|
||||||
json_object_object_add(jsonparam, "WTPRebootStatistics", jhash);
|
json_object_object_add(jsonparam, "WTPRebootStatistics", jsonhash);
|
||||||
|
|
||||||
/* ACNamePriority */
|
/* ACNamePriority */
|
||||||
elemarray = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_ACNAMEPRIORITY);
|
elemarray = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_ACNAMEPRIORITY);
|
||||||
if (elemarray && elemarray->count) {
|
if (elemarray && elemarray->count) {
|
||||||
jarray = json_object_new_array();
|
jsonarray = json_object_new_array();
|
||||||
for (i = 0; i < elemarray->count; i++) {
|
for (i = 0; i < elemarray->count; i++) {
|
||||||
json_object* jacname;
|
json_object* jacname;
|
||||||
struct capwap_acnamepriority_element* acname = *(struct capwap_acnamepriority_element**)capwap_array_get_item_pointer(elemarray, i);
|
struct capwap_acnamepriority_element* acname = *(struct capwap_acnamepriority_element**)capwap_array_get_item_pointer(elemarray, i);
|
||||||
@ -107,10 +107,10 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
jacname = json_object_new_object();
|
jacname = json_object_new_object();
|
||||||
json_object_object_add(jacname, "Priority", json_object_new_int((int)acname->priority));
|
json_object_object_add(jacname, "Priority", json_object_new_int((int)acname->priority));
|
||||||
json_object_object_add(jacname, "ACName", json_object_new_string((char*)acname->name));
|
json_object_object_add(jacname, "ACName", json_object_new_string((char*)acname->name));
|
||||||
json_object_array_add(jarray, jacname);
|
json_object_array_add(jsonarray, jacname);
|
||||||
}
|
}
|
||||||
|
|
||||||
json_object_object_add(jsonparam, "ACNamePriority", jarray);
|
json_object_object_add(jsonparam, "ACNamePriority", jsonarray);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* WTPStaticIPAddressInformation */
|
/* WTPStaticIPAddressInformation */
|
||||||
@ -119,12 +119,12 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
char ipbuffer[INET_ADDRSTRLEN];
|
char ipbuffer[INET_ADDRSTRLEN];
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
jhash = json_object_new_object();
|
jsonhash = json_object_new_object();
|
||||||
json_object_object_add(jhash, "IPAddress", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->address, ipbuffer, INET_ADDRSTRLEN)));
|
json_object_object_add(jsonhash, "IPAddress", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->address, ipbuffer, INET_ADDRSTRLEN)));
|
||||||
json_object_object_add(jhash, "Netmask", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->netmask, ipbuffer, INET_ADDRSTRLEN)));
|
json_object_object_add(jsonhash, "Netmask", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->netmask, ipbuffer, INET_ADDRSTRLEN)));
|
||||||
json_object_object_add(jhash, "Gateway", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->gateway, ipbuffer, INET_ADDRSTRLEN)));
|
json_object_object_add(jsonhash, "Gateway", json_object_new_string(inet_ntop(AF_INET, (void*)&wtpstaticipaddress->gateway, ipbuffer, INET_ADDRSTRLEN)));
|
||||||
json_object_object_add(jhash, "Static", json_object_new_int((int)wtpstaticipaddress->staticip));
|
json_object_object_add(jsonhash, "Static", json_object_new_int((int)wtpstaticipaddress->staticip));
|
||||||
json_object_object_add(jsonparam, "WTPStaticIPAddressInformation", jhash);
|
json_object_object_add(jsonparam, "WTPStaticIPAddressInformation", jsonhash);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get JSON param and convert base64 */
|
/* Get JSON param and convert base64 */
|
||||||
@ -137,7 +137,7 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
ac_base64_string_encode(jsonmessage, base64confstatus);
|
ac_base64_string_encode(jsonmessage, base64confstatus);
|
||||||
|
|
||||||
/* Send message */
|
/* Send message */
|
||||||
response = ac_soap_configureStatus(session, session->wtpid, base64confstatus);
|
response = ac_soap_configurestatus(session, session->wtpid, base64confstatus);
|
||||||
|
|
||||||
/* Free JSON */
|
/* Free JSON */
|
||||||
json_object_put(jsonparam);
|
json_object_put(jsonparam);
|
||||||
@ -147,9 +147,374 @@ static struct ac_soap_response* ac_dfa_state_configure_parsing_request(struct ac
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
int ac_dfa_state_configure(struct ac_session_t* session, struct capwap_parsed_packet* packet) {
|
static uint32_t ac_dfa_state_configure_create_response(struct ac_session_t* session, struct capwap_parsed_packet* packet, struct ac_soap_response* response, struct capwap_packet_txmng* txmngpacket) {
|
||||||
|
int length;
|
||||||
|
char* json;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
|
xmlChar* xmlResult;
|
||||||
|
struct json_object* jsonroot;
|
||||||
|
struct json_object* jsonelement;
|
||||||
struct capwap_array* radioadmstate;
|
struct capwap_array* radioadmstate;
|
||||||
|
struct capwap_timers_element responsetimers;
|
||||||
|
struct capwap_idletimeout_element responseidletimeout;
|
||||||
|
struct capwap_wtpfallback_element responsewtpfallback;
|
||||||
|
|
||||||
|
if ((response->responsecode != HTTP_RESULT_OK) || !response->xmlResponseReturn) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Receive SOAP response with JSON result
|
||||||
|
{
|
||||||
|
CAPWAPTimers: {
|
||||||
|
Discovery: [int],
|
||||||
|
EchoRequest: [int]
|
||||||
|
},
|
||||||
|
DecryptionErrorReportPeriod: [
|
||||||
|
{
|
||||||
|
RadioID: [int],
|
||||||
|
ReportInterval: [int]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
IdleTimeout: {
|
||||||
|
Timeout: [int]
|
||||||
|
},
|
||||||
|
WTPFallback: {
|
||||||
|
Mode: [int]
|
||||||
|
}
|
||||||
|
ACIPv4List: [
|
||||||
|
{
|
||||||
|
ACIPAddress: [string]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
ACIPv6List: [
|
||||||
|
{
|
||||||
|
ACIPAddress: [string]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
WTPStaticIPAddressInformation: {
|
||||||
|
IPAddress: [string],
|
||||||
|
Netmask: [string],
|
||||||
|
Gateway: [string],
|
||||||
|
Static: [int]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Decode base64 result */
|
||||||
|
xmlResult = xmlNodeGetContent(response->xmlResponseReturn);
|
||||||
|
if (!xmlResult) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
length = xmlStrlen(xmlResult);
|
||||||
|
if (!length) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
json = (char*)capwap_alloc(AC_BASE64_DECODE_LENGTH(length));
|
||||||
|
ac_base64_string_decode((const char*)xmlResult, json);
|
||||||
|
|
||||||
|
xmlFree(xmlResult);
|
||||||
|
|
||||||
|
/* Parsing JSON result */
|
||||||
|
jsonroot = json_tokener_parse(json);
|
||||||
|
capwap_free(json);
|
||||||
|
|
||||||
|
/* Add message elements response, every local value can be overwrite from backend server */
|
||||||
|
|
||||||
|
/* CAPWAP Timers */
|
||||||
|
memcpy(&responsetimers, &session->dfa.timers, sizeof(struct capwap_timers_element));
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "CAPWAPTimers");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* Discovery */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Discovery");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
if ((value > 0) && (value < 256)) {
|
||||||
|
responsetimers.discovery = (uint8_t)value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* EchoRequest */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "EchoRequest");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
if ((value > 0) && (value < 256)) {
|
||||||
|
responsetimers.echorequest = (uint8_t)value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_TIMERS, &responsetimers);
|
||||||
|
|
||||||
|
/* Decryption Error Report Period */
|
||||||
|
jsonelement = NULL;
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "DecryptionErrorReportPeriod");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_array)) {
|
||||||
|
length = json_object_array_length(jsonelement);
|
||||||
|
} else {
|
||||||
|
jsonelement = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Build Decryption Error Report Period List with elements of Radio Administration State */
|
||||||
|
radioadmstate = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RADIOADMSTATE);
|
||||||
|
for (i = 0; i < radioadmstate->count; i++) {
|
||||||
|
struct capwap_decrypterrorreportperiod_element report;
|
||||||
|
struct capwap_radioadmstate_element* radioadm = *(struct capwap_radioadmstate_element**)capwap_array_get_item_pointer(radioadmstate, i);
|
||||||
|
|
||||||
|
report.radioid = radioadm->radioid;
|
||||||
|
report.interval = session->dfa.decrypterrorreport_interval;
|
||||||
|
|
||||||
|
/* Search for JSON overwrite value */
|
||||||
|
if (jsonelement) {
|
||||||
|
int j;
|
||||||
|
|
||||||
|
for (j = 0; j < length; j++) {
|
||||||
|
struct json_object* jsonvalue = json_object_array_get_idx(jsonelement, i);
|
||||||
|
if (jsonvalue && (json_object_get_type(jsonvalue) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* RadioID */
|
||||||
|
jsonitem = json_object_object_get(jsonvalue, "RadioID");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
if ((value > 0) && (value < 256) && ((uint8_t)value == report.radioid)) {
|
||||||
|
/* Get ReportInterval value */
|
||||||
|
jsonitem = json_object_object_get(jsonvalue, "ReportInterval");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
value = json_object_get_int(jsonitem);
|
||||||
|
if ((value > 0) && (value < 65536)) {
|
||||||
|
report.interval = (uint16_t)value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* */
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_DECRYPTERRORREPORTPERIOD, &report);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* IdleTimeout */
|
||||||
|
memcpy(&responseidletimeout, &session->dfa.idletimeout, sizeof(struct capwap_idletimeout_element));
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "IdleTimeout");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* Timeout */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Timeout");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
if (value > 0) {
|
||||||
|
responseidletimeout.timeout = (uint32_t)value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_IDLETIMEOUT, &responseidletimeout);
|
||||||
|
|
||||||
|
/* WTPFallback */
|
||||||
|
memcpy(&responsewtpfallback, &session->dfa.wtpfallback, sizeof(struct capwap_wtpfallback_element));
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "WTPFallback");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* Mode */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Mode");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
if ((value > 0) && (value < 256)) {
|
||||||
|
responsewtpfallback.mode = (uint8_t)value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_WTPFALLBACK, &responsewtpfallback);
|
||||||
|
|
||||||
|
/* ACIPv4List */
|
||||||
|
jsonelement = NULL;
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "ACIPv4List");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_array)) {
|
||||||
|
length = json_object_array_length(jsonelement);
|
||||||
|
} else {
|
||||||
|
jsonelement = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (jsonelement) {
|
||||||
|
int j;
|
||||||
|
struct capwap_acipv4list_element* responseacipv4list;
|
||||||
|
|
||||||
|
responseacipv4list = (struct capwap_acipv4list_element*)capwap_alloc(sizeof(struct capwap_acipv4list_element));
|
||||||
|
responseacipv4list->addresses = capwap_array_create(sizeof(struct in_addr), 0, 0);
|
||||||
|
|
||||||
|
for (j = 0; j < length; j++) {
|
||||||
|
struct json_object* jsonvalue = json_object_array_get_idx(jsonelement, i);
|
||||||
|
if (jsonvalue && (json_object_get_type(jsonvalue) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* ACIPAddress */
|
||||||
|
jsonitem = json_object_object_get(jsonvalue, "ACIPAddress");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_string)) {
|
||||||
|
const char* value = json_object_get_string(jsonitem);
|
||||||
|
if (value) {
|
||||||
|
struct sockaddr_storage address;
|
||||||
|
if (capwap_address_from_string(value, &address)) {
|
||||||
|
/* Accept only IPv4 address */
|
||||||
|
if (address.ss_family == AF_INET) {
|
||||||
|
struct sockaddr_in* address_in = (struct sockaddr_in*)&address;
|
||||||
|
struct in_addr* responseaddress_in = (struct in_addr*)capwap_array_get_item_pointer(responseacipv4list->addresses, responseacipv4list->addresses->count);
|
||||||
|
memcpy(responseaddress_in, &address_in->sin_addr, sizeof(struct in_addr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseacipv4list->addresses->count > 0) {
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV4LIST, responseacipv4list);
|
||||||
|
}
|
||||||
|
|
||||||
|
capwap_array_free(responseacipv4list->addresses);
|
||||||
|
capwap_free(responseacipv4list);
|
||||||
|
} else if (session->dfa.acipv4list.addresses->count > 0) {
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV4LIST, &session->dfa.acipv4list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ACIPv6List */
|
||||||
|
jsonelement = NULL;
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "ACIPv6List");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_array)) {
|
||||||
|
length = json_object_array_length(jsonelement);
|
||||||
|
} else {
|
||||||
|
jsonelement = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (jsonelement) {
|
||||||
|
int j;
|
||||||
|
struct capwap_acipv6list_element* responseacipv6list;
|
||||||
|
|
||||||
|
responseacipv6list = (struct capwap_acipv6list_element*)capwap_alloc(sizeof(struct capwap_acipv6list_element));
|
||||||
|
responseacipv6list->addresses = capwap_array_create(sizeof(struct in6_addr), 0, 0);
|
||||||
|
|
||||||
|
for (j = 0; j < length; j++) {
|
||||||
|
struct json_object* jsonvalue = json_object_array_get_idx(jsonelement, i);
|
||||||
|
if (jsonvalue && (json_object_get_type(jsonvalue) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* ACIPAddress */
|
||||||
|
jsonitem = json_object_object_get(jsonvalue, "ACIPAddress");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_string)) {
|
||||||
|
const char* value = json_object_get_string(jsonitem);
|
||||||
|
if (value) {
|
||||||
|
struct sockaddr_storage address;
|
||||||
|
if (capwap_address_from_string(value, &address)) {
|
||||||
|
/* Accept only IPv6 address */
|
||||||
|
if (address.ss_family == AF_INET6) {
|
||||||
|
struct sockaddr_in6* address_in6 = (struct sockaddr_in6*)&address;
|
||||||
|
struct in6_addr* responseaddress_in6 = (struct in6_addr*)capwap_array_get_item_pointer(responseacipv6list->addresses, responseacipv6list->addresses->count);
|
||||||
|
memcpy(responseaddress_in6, &address_in6->sin6_addr, sizeof(struct in6_addr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseacipv6list->addresses->count > 0) {
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV6LIST, responseacipv6list);
|
||||||
|
}
|
||||||
|
|
||||||
|
capwap_array_free(responseacipv6list->addresses);
|
||||||
|
capwap_free(responseacipv6list);
|
||||||
|
} else if (session->dfa.acipv6list.addresses->count > 0) {
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV6LIST, &session->dfa.acipv6list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* WTPStaticIPAddressInformation */
|
||||||
|
if (jsonroot) {
|
||||||
|
jsonelement = json_object_object_get(jsonroot, "WTPStaticIPAddressInformation");
|
||||||
|
if (jsonelement && (json_object_get_type(jsonelement) == json_type_object)) {
|
||||||
|
struct json_object* jsonitem;
|
||||||
|
|
||||||
|
/* IPAddress */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "IPAddress");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_string)) {
|
||||||
|
struct sockaddr_storage address;
|
||||||
|
const char* addressvalue = json_object_get_string(jsonitem);
|
||||||
|
|
||||||
|
if (capwap_address_from_string(addressvalue, &address)) {
|
||||||
|
if (address.ss_family == AF_INET) {
|
||||||
|
/* Netmask */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Netmask");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_string)) {
|
||||||
|
struct sockaddr_storage netmask;
|
||||||
|
const char* netmaskvalue = json_object_get_string(jsonitem);
|
||||||
|
|
||||||
|
if (capwap_address_from_string(netmaskvalue, &netmask)) {
|
||||||
|
if (netmask.ss_family == AF_INET) {
|
||||||
|
/* Gateway */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Gateway");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_string)) {
|
||||||
|
struct sockaddr_storage gateway;
|
||||||
|
const char* gatewayvalue = json_object_get_string(jsonitem);
|
||||||
|
|
||||||
|
if (capwap_address_from_string(gatewayvalue, &gateway)) {
|
||||||
|
if (gateway.ss_family == AF_INET) {
|
||||||
|
/* Static */
|
||||||
|
jsonitem = json_object_object_get(jsonelement, "Static");
|
||||||
|
if (jsonitem && (json_object_get_type(jsonitem) == json_type_int)) {
|
||||||
|
int value = json_object_get_int(jsonitem);
|
||||||
|
struct capwap_wtpstaticipaddress_element responsewtpstaticipaddress;
|
||||||
|
|
||||||
|
memcpy(&responsewtpstaticipaddress.address, &((struct sockaddr_in*)&address)->sin_addr, sizeof(struct in_addr));
|
||||||
|
memcpy(&responsewtpstaticipaddress.netmask, &((struct sockaddr_in*)&netmask)->sin_addr, sizeof(struct in_addr));
|
||||||
|
memcpy(&responsewtpstaticipaddress.gateway, &((struct sockaddr_in*)&gateway)->sin_addr, sizeof(struct in_addr));
|
||||||
|
responsewtpstaticipaddress.staticip = (uint8_t)value;
|
||||||
|
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_WTPSTATICIPADDRESS, &responsewtpstaticipaddress);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* CAPWAP_CREATE_VENDORSPECIFICPAYLOAD_ELEMENT */ /* TODO */
|
||||||
|
|
||||||
|
if (jsonroot) {
|
||||||
|
json_object_put(jsonroot);
|
||||||
|
}
|
||||||
|
|
||||||
|
return CAPWAP_RESULTCODE_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* */
|
||||||
|
int ac_dfa_state_configure(struct ac_session_t* session, struct capwap_parsed_packet* packet) {
|
||||||
|
uint32_t result;
|
||||||
struct capwap_header_data capwapheader;
|
struct capwap_header_data capwapheader;
|
||||||
struct capwap_packet_txmng* txmngpacket;
|
struct capwap_packet_txmng* txmngpacket;
|
||||||
int status = AC_DFA_ACCEPT_PACKET;
|
int status = AC_DFA_ACCEPT_PACKET;
|
||||||
@ -165,33 +530,14 @@ int ac_dfa_state_configure(struct ac_session_t* session, struct capwap_parsed_pa
|
|||||||
txmngpacket = capwap_packet_txmng_create_ctrl_message(&capwapheader, CAPWAP_CONFIGURATION_STATUS_RESPONSE, packet->rxmngpacket->ctrlmsg.seq, session->mtu);
|
txmngpacket = capwap_packet_txmng_create_ctrl_message(&capwapheader, CAPWAP_CONFIGURATION_STATUS_RESPONSE, packet->rxmngpacket->ctrlmsg.seq, session->mtu);
|
||||||
|
|
||||||
/* Add message element */
|
/* Add message element */
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_TIMERS, &session->dfa.timers);
|
result = ac_dfa_state_configure_create_response(session, packet, response, txmngpacket);
|
||||||
|
if (!CAPWAP_RESULTCODE_OK(result)) {
|
||||||
|
struct capwap_resultcode_element resultcode = { .code = result };
|
||||||
|
|
||||||
radioadmstate = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RADIOADMSTATE);
|
/* Add error result code */
|
||||||
for (i = 0; i < radioadmstate->count; i++) {
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_RESULTCODE, &resultcode);
|
||||||
struct capwap_decrypterrorreportperiod_element report;
|
|
||||||
struct capwap_radioadmstate_element* radioadm = *(struct capwap_radioadmstate_element**)capwap_array_get_item_pointer(radioadmstate, i);
|
|
||||||
|
|
||||||
report.radioid = radioadm->radioid;
|
|
||||||
report.interval = session->dfa.decrypterrorreport_interval;
|
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_DECRYPTERRORREPORTPERIOD, &report);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_IDLETIMEOUT, &session->dfa.idletimeout);
|
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_WTPFALLBACK, &session->dfa.wtpfallback);
|
|
||||||
|
|
||||||
if (session->dfa.acipv4list.addresses->count > 0) {
|
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV4LIST, &session->dfa.acipv4list);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (session->dfa.acipv6list.addresses->count > 0) {
|
|
||||||
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_ACIPV6LIST, &session->dfa.acipv6list);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CAPWAP_CREATE_RADIOOPRSTATE_ELEMENT */ /* TODO */
|
|
||||||
/* CAPWAP_CREATE_WTPSTATICIPADDRESS_ELEMENT */ /* TODO */
|
|
||||||
/* CAPWAP_CREATE_VENDORSPECIFICPAYLOAD_ELEMENT */ /* TODO */
|
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
ac_soapclient_free_response(response);
|
ac_soapclient_free_response(response);
|
||||||
|
|
||||||
@ -216,12 +562,17 @@ int ac_dfa_state_configure(struct ac_session_t* session, struct capwap_parsed_pa
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Change state */
|
/* Change state */
|
||||||
|
if (CAPWAP_RESULTCODE_OK(result)) {
|
||||||
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_STATE);
|
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_STATE);
|
||||||
capwap_set_timeout(session->dfa.rfcChangeStatePendingTimer, &session->timeout, CAPWAP_TIMER_CONTROL_CONNECTION);
|
capwap_set_timeout(session->dfa.rfcChangeStatePendingTimer, &session->timeout, CAPWAP_TIMER_CONTROL_CONNECTION);
|
||||||
} else {
|
} else {
|
||||||
ac_dfa_change_state(session, CAPWAP_CONFIGURE_TO_DTLS_TEARDOWN_STATE);
|
ac_dfa_change_state(session, CAPWAP_CONFIGURE_TO_DTLS_TEARDOWN_STATE);
|
||||||
status = AC_DFA_NO_PACKET;
|
status = AC_DFA_NO_PACKET;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
ac_dfa_change_state(session, CAPWAP_CONFIGURE_TO_DTLS_TEARDOWN_STATE);
|
||||||
|
status = AC_DFA_NO_PACKET;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
/* Configure timeout */
|
/* Configure timeout */
|
||||||
ac_dfa_change_state(session, CAPWAP_CONFIGURE_TO_DTLS_TEARDOWN_STATE);
|
ac_dfa_change_state(session, CAPWAP_CONFIGURE_TO_DTLS_TEARDOWN_STATE);
|
||||||
|
@ -2,10 +2,141 @@
|
|||||||
#include "capwap_dfa.h"
|
#include "capwap_dfa.h"
|
||||||
#include "capwap_array.h"
|
#include "capwap_array.h"
|
||||||
#include "ac_session.h"
|
#include "ac_session.h"
|
||||||
|
#include <json/json.h>
|
||||||
|
|
||||||
|
/* */
|
||||||
|
static struct ac_soap_response* ac_dfa_state_datacheck_parsing_request(struct ac_session_t* session, struct capwap_parsed_packet* packet) {
|
||||||
|
int i;
|
||||||
|
const char* jsonmessage;
|
||||||
|
char* base64confstatus;
|
||||||
|
struct capwap_array* elemarray;
|
||||||
|
struct json_object* jsonarray;
|
||||||
|
struct json_object* jsonparam;
|
||||||
|
struct json_object* jsonhash;
|
||||||
|
struct ac_soap_response* response;
|
||||||
|
struct capwap_resultcode_element* resultcode;
|
||||||
|
|
||||||
|
/* Create SOAP request with JSON param
|
||||||
|
{
|
||||||
|
RadioOperationalState: [
|
||||||
|
{
|
||||||
|
RadioID: [int],
|
||||||
|
State: [int],
|
||||||
|
Cause: [int]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
ResultCode: {
|
||||||
|
Code: [int]
|
||||||
|
},
|
||||||
|
ReturnedMessageElement: [
|
||||||
|
{
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* */
|
||||||
|
jsonparam = json_object_new_object();
|
||||||
|
|
||||||
|
/* RadioOperationalState */
|
||||||
|
jsonarray = json_object_new_array();
|
||||||
|
elemarray = (struct capwap_array*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RADIOOPRSTATE);
|
||||||
|
for (i = 0; i < elemarray->count; i++) {
|
||||||
|
json_object* jsonradioops;
|
||||||
|
struct capwap_radiooprstate_element* radioops = *(struct capwap_radiooprstate_element**)capwap_array_get_item_pointer(elemarray, i);
|
||||||
|
|
||||||
|
/* */
|
||||||
|
jsonradioops = json_object_new_object();
|
||||||
|
json_object_object_add(jsonradioops, "RadioID", json_object_new_int((int)radioops->radioid));
|
||||||
|
json_object_object_add(jsonradioops, "State", json_object_new_int((int)radioops->state));
|
||||||
|
json_object_object_add(jsonradioops, "Cause", json_object_new_int((int)radioops->cause));
|
||||||
|
json_object_array_add(jsonarray, jsonradioops);
|
||||||
|
}
|
||||||
|
|
||||||
|
json_object_object_add(jsonparam, "RadioOperationalState", jsonarray);
|
||||||
|
|
||||||
|
/* ResultCode */
|
||||||
|
resultcode = (struct capwap_resultcode_element*)capwap_get_message_element_data(packet, CAPWAP_ELEMENT_RESULTCODE);
|
||||||
|
|
||||||
|
jsonhash = json_object_new_object();
|
||||||
|
json_object_object_add(jsonhash, "Code", json_object_new_int((int)resultcode->code));
|
||||||
|
json_object_object_add(jsonparam, "ResultCode", jsonhash);
|
||||||
|
|
||||||
|
/* ReturnedMessageElement */
|
||||||
|
jsonarray = json_object_new_array();
|
||||||
|
/* TODO */
|
||||||
|
json_object_object_add(jsonparam, "ReturnedMessageElement", jsonarray);
|
||||||
|
|
||||||
|
/* Get JSON param and convert base64 */
|
||||||
|
jsonmessage = json_object_to_json_string(jsonparam);
|
||||||
|
base64confstatus = capwap_alloc(AC_BASE64_ENCODE_LENGTH(strlen(jsonmessage)));
|
||||||
|
if (!base64confstatus) {
|
||||||
|
capwap_outofmemory();
|
||||||
|
}
|
||||||
|
|
||||||
|
ac_base64_string_encode(jsonmessage, base64confstatus);
|
||||||
|
|
||||||
|
/* Send message */
|
||||||
|
response = ac_soap_changestateevent(session, session->wtpid, base64confstatus);
|
||||||
|
|
||||||
|
/* Free JSON */
|
||||||
|
json_object_put(jsonparam);
|
||||||
|
capwap_free(base64confstatus);
|
||||||
|
|
||||||
|
return response;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* */
|
||||||
|
static uint32_t ac_dfa_state_datacheck_create_response(struct ac_session_t* session, struct capwap_parsed_packet* packet, struct ac_soap_response* response, struct capwap_packet_txmng* txmngpacket) {
|
||||||
|
int length;
|
||||||
|
char* json;
|
||||||
|
xmlChar* xmlResult;
|
||||||
|
struct json_object* jsonroot;
|
||||||
|
|
||||||
|
if ((response->responsecode != HTTP_RESULT_OK) || !response->xmlResponseReturn) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Receive SOAP response with JSON result
|
||||||
|
{
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Decode base64 result */
|
||||||
|
xmlResult = xmlNodeGetContent(response->xmlResponseReturn);
|
||||||
|
if (!xmlResult) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
length = xmlStrlen(xmlResult);
|
||||||
|
if (!length) {
|
||||||
|
return CAPWAP_RESULTCODE_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
json = (char*)capwap_alloc(AC_BASE64_DECODE_LENGTH(length));
|
||||||
|
ac_base64_string_decode((const char*)xmlResult, json);
|
||||||
|
|
||||||
|
xmlFree(xmlResult);
|
||||||
|
|
||||||
|
/* Parsing JSON result */
|
||||||
|
jsonroot = json_tokener_parse(json);
|
||||||
|
capwap_free(json);
|
||||||
|
|
||||||
|
/* Add message elements response, every local value can be overwrite from backend server */
|
||||||
|
|
||||||
|
/* CAPWAP_CREATE_VENDORSPECIFICPAYLOAD_ELEMENT */ /* TODO */
|
||||||
|
|
||||||
|
if (jsonroot) {
|
||||||
|
json_object_put(jsonroot);
|
||||||
|
}
|
||||||
|
|
||||||
|
return CAPWAP_RESULTCODE_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
int ac_dfa_state_datacheck(struct ac_session_t* session, struct capwap_parsed_packet* packet) {
|
int ac_dfa_state_datacheck(struct ac_session_t* session, struct capwap_parsed_packet* packet) {
|
||||||
unsigned short binding;
|
uint32_t result;
|
||||||
struct capwap_header_data capwapheader;
|
struct capwap_header_data capwapheader;
|
||||||
struct capwap_packet_txmng* txmngpacket;
|
struct capwap_packet_txmng* txmngpacket;
|
||||||
int status = AC_DFA_ACCEPT_PACKET;
|
int status = AC_DFA_ACCEPT_PACKET;
|
||||||
@ -13,15 +144,24 @@ int ac_dfa_state_datacheck(struct ac_session_t* session, struct capwap_parsed_pa
|
|||||||
ASSERT(session != NULL);
|
ASSERT(session != NULL);
|
||||||
|
|
||||||
if (packet) {
|
if (packet) {
|
||||||
binding = GET_WBID_HEADER(packet->rxmngpacket->header);
|
/* Parsing request */
|
||||||
/* TODO: gestione richiesta */
|
struct ac_soap_response* response = ac_dfa_state_datacheck_parsing_request(session, packet);
|
||||||
|
if (response) {
|
||||||
/* Create response */
|
/* Create response */
|
||||||
capwap_header_init(&capwapheader, CAPWAP_RADIOID_NONE, binding);
|
capwap_header_init(&capwapheader, CAPWAP_RADIOID_NONE, GET_WBID_HEADER(packet->rxmngpacket->header));
|
||||||
txmngpacket = capwap_packet_txmng_create_ctrl_message(&capwapheader, CAPWAP_CHANGE_STATE_EVENT_RESPONSE, packet->rxmngpacket->ctrlmsg.seq, session->mtu);
|
txmngpacket = capwap_packet_txmng_create_ctrl_message(&capwapheader, CAPWAP_CHANGE_STATE_EVENT_RESPONSE, packet->rxmngpacket->ctrlmsg.seq, session->mtu);
|
||||||
|
|
||||||
/* Add message element */
|
/* Add message element */
|
||||||
/* CAPWAP_CREATE_VENDORSPECIFICPAYLOAD_ELEMENT */ /* TODO */
|
result = ac_dfa_state_datacheck_create_response(session, packet, response, txmngpacket);
|
||||||
|
if (!CAPWAP_RESULTCODE_OK(result)) {
|
||||||
|
struct capwap_resultcode_element resultcode = { .code = result };
|
||||||
|
|
||||||
|
/* Add error result code */
|
||||||
|
capwap_packet_txmng_add_message_element(txmngpacket, CAPWAP_ELEMENT_RESULTCODE, &resultcode);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* */
|
||||||
|
ac_soapclient_free_response(response);
|
||||||
|
|
||||||
/* Change event response complete, get fragment packets */
|
/* Change event response complete, get fragment packets */
|
||||||
ac_free_reference_last_response(session);
|
ac_free_reference_last_response(session);
|
||||||
@ -44,8 +184,17 @@ int ac_dfa_state_datacheck(struct ac_session_t* session, struct capwap_parsed_pa
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Change state */
|
/* Change state */
|
||||||
|
if (CAPWAP_RESULTCODE_OK(result)) {
|
||||||
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_RUN_STATE);
|
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_RUN_STATE);
|
||||||
capwap_set_timeout(session->dfa.rfcDataCheckTimer, &session->timeout, CAPWAP_TIMER_CONTROL_CONNECTION);
|
capwap_set_timeout(session->dfa.rfcDataCheckTimer, &session->timeout, CAPWAP_TIMER_CONTROL_CONNECTION);
|
||||||
|
} else {
|
||||||
|
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_DTLS_TEARDOWN_STATE);
|
||||||
|
status = AC_DFA_NO_PACKET;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_DTLS_TEARDOWN_STATE);
|
||||||
|
status = AC_DFA_NO_PACKET;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
/* Configure timeout */
|
/* Configure timeout */
|
||||||
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_DTLS_TEARDOWN_STATE);
|
ac_dfa_change_state(session, CAPWAP_DATA_CHECK_TO_DTLS_TEARDOWN_STATE);
|
||||||
|
@ -138,7 +138,7 @@ int ac_dfa_state_dead(struct ac_session_t* session, struct capwap_parsed_packet*
|
|||||||
/* Soap function */
|
/* Soap function */
|
||||||
struct ac_soap_response* ac_session_send_soap_request(struct ac_session_t* session, char* method, int numparam, ...);
|
struct ac_soap_response* ac_session_send_soap_request(struct ac_session_t* session, char* method, int numparam, ...);
|
||||||
#define ac_soap_authorizejoin(s, wtpid) ac_session_send_soap_request((s), "authorizeJoin", 1, "xs:string", "wtpid", wtpid)
|
#define ac_soap_authorizejoin(s, wtpid) ac_session_send_soap_request((s), "authorizeJoin", 1, "xs:string", "wtpid", wtpid)
|
||||||
#define ac_soap_configureStatus(s, wtpid, confstatus) ac_session_send_soap_request((s), "configureStatus", 2, "xs:string", "wtpid", wtpid, "xs:base64Binary", "confstatus", confstatus)
|
#define ac_soap_configurestatus(s, wtpid, confstatus) ac_session_send_soap_request((s), "configureStatus", 2, "xs:string", "wtpid", wtpid, "xs:base64Binary", "confstatus", confstatus)
|
||||||
|
#define ac_soap_changestateevent(s, wtpid, changestate) ac_session_send_soap_request((s), "changeStateEvent", 2, "xs:string", "wtpid", wtpid, "xs:base64Binary", "changestate", changestate)
|
||||||
|
|
||||||
#endif /* __AC_SESSION_HEADER__ */
|
#endif /* __AC_SESSION_HEADER__ */
|
||||||
|
@ -34,6 +34,14 @@
|
|||||||
<wsdl:message name="configureStatusResponse">
|
<wsdl:message name="configureStatusResponse">
|
||||||
<wsdl:part name="return" type="xs:base64Binary"/>
|
<wsdl:part name="return" type="xs:base64Binary"/>
|
||||||
</wsdl:message>
|
</wsdl:message>
|
||||||
|
<wsdl:message name="changeStateEvent">
|
||||||
|
<wsdl:part name="sessionid" type="xs:string"/>
|
||||||
|
<wsdl:part name="wtpid" type="xs:string"/>
|
||||||
|
<wsdl:part name="changestate" type="xs:base64Binary"/>
|
||||||
|
</wsdl:message>
|
||||||
|
<wsdl:message name="changeStateEventResponse">
|
||||||
|
<wsdl:part name="return" type="xs:base64Binary"/>
|
||||||
|
</wsdl:message>
|
||||||
<wsdl:portType name="Presence">
|
<wsdl:portType name="Presence">
|
||||||
<wsdl:operation name="joinBackend">
|
<wsdl:operation name="joinBackend">
|
||||||
<wsdl:input message="tns:joinBackend"/>
|
<wsdl:input message="tns:joinBackend"/>
|
||||||
@ -59,6 +67,10 @@
|
|||||||
<wsdl:input message="tns:configureStatus"/>
|
<wsdl:input message="tns:configureStatus"/>
|
||||||
<wsdl:output message="tns:configureStatusResponse"/>
|
<wsdl:output message="tns:configureStatusResponse"/>
|
||||||
</wsdl:operation>
|
</wsdl:operation>
|
||||||
|
<wsdl:operation name="changeStateEvent">
|
||||||
|
<wsdl:input message="tns:changeStateEvent"/>
|
||||||
|
<wsdl:output message="tns:changeStateEventResponse"/>
|
||||||
|
</wsdl:operation>
|
||||||
</wsdl:portType>
|
</wsdl:portType>
|
||||||
<wsdl:binding name="Presence" type="tns:Presence">
|
<wsdl:binding name="Presence" type="tns:Presence">
|
||||||
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||||
@ -105,7 +117,16 @@
|
|||||||
</wsdl:output>
|
</wsdl:output>
|
||||||
</wsdl:operation>
|
</wsdl:operation>
|
||||||
<wsdl:operation name="configureStatus">
|
<wsdl:operation name="configureStatus">
|
||||||
<soap:operation soapAction="urn:#NewOperation"/>
|
<soap:operation soapAction=""/>
|
||||||
|
<wsdl:input>
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</wsdl:input>
|
||||||
|
<wsdl:output>
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</wsdl:output>
|
||||||
|
</wsdl:operation>
|
||||||
|
<wsdl:operation name="changeStateEvent">
|
||||||
|
<soap:operation soapAction=""/>
|
||||||
<wsdl:input>
|
<wsdl:input>
|
||||||
<soap:body use="literal"/>
|
<soap:body use="literal"/>
|
||||||
</wsdl:input>
|
</wsdl:input>
|
||||||
|
Loading…
Reference in New Issue
Block a user