* A string containing the servers response (a json string containing {"result": "success"/"failure"}), indicating whether the call was successful or not.
* NULL on failure.
*/
char*mobile_connect_network(void);
char*mobile_connect_network(void);
/**
* Function: mobile_disconnect_network
*
* Disconnects the dongle's network.
*
* Returns:
* A string containing the servers response (a json string containing {"result": "success"/"failure"}), indicating whether the call was successful or not.
* NULL on failure.
*/
char*mobile_disconnect_network(void);
char*mobile_disconnect_network(void);
char*mobile_delete_apn(intidx);
/**
* Function: mobile_delete_apn
*
* Deletes an existing APN profile from the APN list.
*
* Parameters:
* name - The name of the APN profile to be removed.
*
* Returns:
* A string containing the servers response (a json string containing {"result": "success"/"failure"}), indicating whether the call was successful or not.
* NULL on failure.
*/
char*mobile_delete_apn(char*name);
/**
* Function: mobile_enable_roaming
*
* Enables the roaming option on the dongle.
*
* Parameters:
* name - The name of the APN profile to be removed.
*
* Returns:
* A string containing the servers response (a json string containing {"result": "success"/"failure"}), indicating whether the call was successful or not.