|
@@ -10042,6 +10042,21 @@ int handleDataTransferRequest(char *uuid, char *payload)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ if(json_object_object_get(data, "isAuthentication") != NULL)
|
|
|
+ {
|
|
|
+ switch(json_object_get_int(json_object_object_get(data, "isAuthentication")))
|
|
|
+ {
|
|
|
+ case 0:
|
|
|
+ case 1:
|
|
|
+ ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Rejected"));
|
|
|
+ json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
if(strstr(json_object_get_string(json_object_object_get(response, "status")), "Accepted") != NULL)
|
|
|
StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
|
|
|
}
|