summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-01-15 16:52:54 +0100
committerGravatar Nikias Bassen2012-01-15 16:52:54 +0100
commit96e06ea1e4dabd2a3d4b51c799842dee2e279f30 (patch)
treec71634a4e42153c2fb286854ead2184db7ae055c /src
parentc182599c8c18ed729726ea7cbbd0a3b89790d2db (diff)
downloadlibimobiledevice-96e06ea1e4dabd2a3d4b51c799842dee2e279f30.tar.gz
libimobiledevice-96e06ea1e4dabd2a3d4b51c799842dee2e279f30.tar.bz2
added mobilebackup2_send_message to public api
Diffstat (limited to 'src')
-rw-r--r--src/mobilebackup2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mobilebackup2.c b/src/mobilebackup2.c
index c16da9a..1e39efa 100644
--- a/src/mobilebackup2.c
+++ b/src/mobilebackup2.c
@@ -135,7 +135,7 @@ mobilebackup2_error_t mobilebackup2_client_free(mobilebackup2_client_t client)
135 * will be inserted into this plist before sending it. This parameter 135 * will be inserted into this plist before sending it. This parameter
136 * can be NULL if message is not NULL. 136 * can be NULL if message is not NULL.
137 */ 137 */
138static mobilebackup2_error_t internal_mobilebackup2_send_message(mobilebackup2_client_t client, const char *message, plist_t options) 138mobilebackup2_error_t mobilebackup2_send_message(mobilebackup2_client_t client, const char *message, plist_t options)
139{ 139{
140 if (!client || !client->parent || (!message && !options)) 140 if (!client || !client->parent || (!message && !options))
141 return MOBILEBACKUP2_E_INVALID_ARG; 141 return MOBILEBACKUP2_E_INVALID_ARG;
@@ -368,7 +368,7 @@ mobilebackup2_error_t mobilebackup2_version_exchange(mobilebackup2_client_t clie
368 } 368 }
369 plist_dict_insert_item(dict, "SupportedProtocolVersions", array); 369 plist_dict_insert_item(dict, "SupportedProtocolVersions", array);
370 370
371 mobilebackup2_error_t err = internal_mobilebackup2_send_message(client, "Hello", dict); 371 mobilebackup2_error_t err = mobilebackup2_send_message(client, "Hello", dict);
372 plist_free(dict); 372 plist_free(dict);
373 373
374 if (err != MOBILEBACKUP2_E_SUCCESS) 374 if (err != MOBILEBACKUP2_E_SUCCESS)
@@ -438,7 +438,7 @@ mobilebackup2_error_t mobilebackup2_send_request(mobilebackup2_client_t client,
438 if (options) { 438 if (options) {
439 plist_dict_insert_item(dict, "Options", plist_copy(options)); 439 plist_dict_insert_item(dict, "Options", plist_copy(options));
440 } 440 }
441 mobilebackup2_error_t err = internal_mobilebackup2_send_message(client, request, dict); 441 mobilebackup2_error_t err = mobilebackup2_send_message(client, request, dict);
442 plist_free(dict); 442 plist_free(dict);
443 443
444 return err; 444 return err;