libimobiledevice
1.1.5
|
Send "heartbeat" to device to allow service connections over network. More...
Macros | |
#define | HEARTBEAT_SERVICE_NAME "com.apple.mobile.heartbeat" |
Typedefs | |
typedef int16_t | heartbeat_error_t |
Represents an error code. | |
typedef heartbeat_client_private * | heartbeat_client_t |
The client handle. |
Functions | |
heartbeat_error_t | heartbeat_client_new (idevice_t device, lockdownd_service_descriptor_t service, heartbeat_client_t *client) |
Connects to the heartbeat service on the specified device. | |
heartbeat_error_t | heartbeat_client_start_service (idevice_t device, heartbeat_client_t *client, const char *label) |
Starts a new heartbeat service on the specified device and connects to it. | |
heartbeat_error_t | heartbeat_client_free (heartbeat_client_t client) |
Disconnects a heartbeat client from the device and frees up the heartbeat client data. | |
heartbeat_error_t | heartbeat_send (heartbeat_client_t client, plist_t plist) |
Sends a plist to the service. | |
heartbeat_error_t | heartbeat_receive (heartbeat_client_t client, plist_t *plist) |
Receives a plist from the service. | |
heartbeat_error_t | heartbeat_receive_with_timeout (heartbeat_client_t client, plist_t *plist, uint32_t timeout_ms) |
Receives a plist using the given heartbeat client. |
Send "heartbeat" to device to allow service connections over network.
The client handle.
typedef int16_t heartbeat_error_t |
Represents an error code.
heartbeat_error_t heartbeat_client_free | ( | heartbeat_client_t | client | ) |
Disconnects a heartbeat client from the device and frees up the heartbeat client data.
client | The heartbeat client to disconnect and free. |
heartbeat_error_t heartbeat_client_new | ( | idevice_t | device, |
lockdownd_service_descriptor_t | service, | ||
heartbeat_client_t * | client | ||
) |
Connects to the heartbeat service on the specified device.
device | The device to connect to. |
service | The service descriptor returned by lockdownd_start_service. |
client | Pointer that will point to a newly allocated heartbeat_client_t upon successful return. Must be freed using heartbeat_client_free() after use. |
heartbeat_error_t heartbeat_client_start_service | ( | idevice_t | device, |
heartbeat_client_t * | client, | ||
const char * | label | ||
) |
Starts a new heartbeat service on the specified device and connects to it.
device | The device to connect to. |
client | Pointer that will point to a newly allocated heartbeat_client_t upon successful return. Must be freed using heartbeat_client_free() after use. |
label | The label to use for communication. Usually the program name. Pass NULL to disable sending the label in requests to lockdownd. |
heartbeat_error_t heartbeat_receive | ( | heartbeat_client_t | client, |
plist_t * | plist | ||
) |
Receives a plist from the service.
client | The heartbeat client |
plist | The plist to store the received data |
heartbeat_error_t heartbeat_receive_with_timeout | ( | heartbeat_client_t | client, |
plist_t * | plist, | ||
uint32_t | timeout_ms | ||
) |
Receives a plist using the given heartbeat client.
client | The heartbeat client to use for receiving |
plist | pointer to a plist_t that will point to the received plist upon successful return |
timeout | Maximum time in milliseconds to wait for data. |
heartbeat_error_t heartbeat_send | ( | heartbeat_client_t | client, |
plist_t | plist | ||
) |
Sends a plist to the service.
client | The heartbeat client |
plist | The plist to send |