summaryrefslogtreecommitdiffstats
path: root/src/mobile_image_mounter.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-02-26 03:20:56 +0100
committerGravatar Martin Szulecki2013-02-26 03:20:56 +0100
commitfcc1bb855efb6860417ed827d3b50feba24a9a8b (patch)
tree47d3c7d6a985dc647f7962329014c8116d657cc9 /src/mobile_image_mounter.c
parent3b54aac30447bc02fafd721a63a752968628e7e0 (diff)
downloadlibimobiledevice-fcc1bb855efb6860417ed827d3b50feba24a9a8b.tar.gz
libimobiledevice-fcc1bb855efb6860417ed827d3b50feba24a9a8b.tar.bz2
Refactor port number use into service descriptor to enable SSL for services
This is a major change which breaks API but is required in order to support SSL communication for services as used by network connections.
Diffstat (limited to 'src/mobile_image_mounter.c')
-rw-r--r--src/mobile_image_mounter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mobile_image_mounter.c b/src/mobile_image_mounter.c
index 557fbda..3e31ef4 100644
--- a/src/mobile_image_mounter.c
+++ b/src/mobile_image_mounter.c
@@ -87,7 +87,7 @@ static mobile_image_mounter_error_t mobile_image_mounter_error(property_list_ser
87 * Connects to the mobile_image_mounter service on the specified device. 87 * Connects to the mobile_image_mounter service on the specified device.
88 * 88 *
89 * @param device The device to connect to. 89 * @param device The device to connect to.
90 * @param port Destination port (usually given by lockdownd_start_service). 90 * @param service The service descriptor returned by lockdownd_start_service.
91 * @param client Pointer that will be set to a newly allocated 91 * @param client Pointer that will be set to a newly allocated
92 * mobile_image_mounter_client_t upon successful return. 92 * mobile_image_mounter_client_t upon successful return.
93 * 93 *
@@ -96,13 +96,13 @@ static mobile_image_mounter_error_t mobile_image_mounter_error(property_list_ser
96 * or MOBILE_IMAGE_MOUNTER_E_CONN_FAILED if the connection to the 96 * or MOBILE_IMAGE_MOUNTER_E_CONN_FAILED if the connection to the
97 * device could not be established. 97 * device could not be established.
98 */ 98 */
99mobile_image_mounter_error_t mobile_image_mounter_new(idevice_t device, uint16_t port, mobile_image_mounter_client_t *client) 99mobile_image_mounter_error_t mobile_image_mounter_new(idevice_t device, lockdownd_service_descriptor_t service, mobile_image_mounter_client_t *client)
100{ 100{
101 if (!device) 101 if (!device)
102 return MOBILE_IMAGE_MOUNTER_E_INVALID_ARG; 102 return MOBILE_IMAGE_MOUNTER_E_INVALID_ARG;
103 103
104 property_list_service_client_t plistclient = NULL; 104 property_list_service_client_t plistclient = NULL;
105 if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { 105 if (property_list_service_client_new(device, service, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
106 return MOBILE_IMAGE_MOUNTER_E_CONN_FAILED; 106 return MOBILE_IMAGE_MOUNTER_E_CONN_FAILED;
107 } 107 }
108 108