Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
free(result);
return result_json;
fail_converter:
free(result);
fail_result:
return NULL;
}
struct json_object *mobile_connect_network_hilink()
{
return network_action(ENABLE);
}
struct json_object *mobile_disconnect_network_hilink()
{
return network_action(DISABLE);
}