libimobiledevice
1.1.5
|
Retrieve compressed CPIO archives. More...
Typedefs | |
typedef int16_t | file_relay_error_t |
Represents an error code. | |
typedef file_relay_client_private * | file_relay_client_t |
The client handle. |
Functions | |
file_relay_error_t | file_relay_client_new (idevice_t device, lockdownd_service_descriptor_t service, file_relay_client_t *client) |
Connects to the file_relay service on the specified device. | |
file_relay_error_t | file_relay_client_free (file_relay_client_t client) |
Disconnects a file_relay client from the device and frees up the file_relay client data. | |
file_relay_error_t | file_relay_request_sources (file_relay_client_t client, const char **sources, idevice_connection_t *connection) |
Request data for the given sources. |
Retrieve compressed CPIO archives.
The client handle.
typedef int16_t file_relay_error_t |
Represents an error code.
file_relay_error_t file_relay_client_free | ( | file_relay_client_t | client | ) |
Disconnects a file_relay client from the device and frees up the file_relay client data.
client | The file_relay client to disconnect and free. |
file_relay_error_t file_relay_client_new | ( | idevice_t | device, |
lockdownd_service_descriptor_t | service, | ||
file_relay_client_t * | client | ||
) |
Connects to the file_relay service on the specified device.
device | The device to connect to. |
service | The service descriptor returned by lockdownd_start_service. |
client | Reference that will point to a newly allocated file_relay_client_t upon successful return. |
file_relay_error_t file_relay_request_sources | ( | file_relay_client_t | client, |
const char ** | sources, | ||
idevice_connection_t * | connection | ||
) |
Request data for the given sources.
client | The connected file_relay client. |
sources | A NULL-terminated list of sources to retrieve. Valid sources are:
|
connection | The connection that has to be used for receiving the data using idevice_connection_receive(). The connection will be closed automatically by the device, but use file_relay_client_free() to clean up properly. |