summaryrefslogtreecommitdiffstats
path: root/src/screenshotr.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/screenshotr.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/screenshotr.c')
-rw-r--r--src/screenshotr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screenshotr.c b/src/screenshotr.c
index 063d282..e2bc979 100644
--- a/src/screenshotr.c
+++ b/src/screenshotr.c
@@ -62,7 +62,7 @@ static screenshotr_error_t screenshotr_error(device_link_service_error_t err)
62 * Connects to the screenshotr service on the specified device. 62 * Connects to the screenshotr service on the specified device.
63 * 63 *
64 * @param device The device to connect to. 64 * @param device The device to connect to.
65 * @param port Destination port (usually given by lockdownd_start_service). 65 * @param service The service descriptor returned by lockdownd_start_service.
66 * @param client Pointer that will be set to a newly allocated 66 * @param client Pointer that will be set to a newly allocated
67 * screenshotr_client_t upon successful return. 67 * screenshotr_client_t upon successful return.
68 * 68 *
@@ -73,14 +73,14 @@ static screenshotr_error_t screenshotr_error(device_link_service_error_t err)
73 * or more parameters are invalid, or SCREENSHOTR_E_CONN_FAILED if the 73 * or more parameters are invalid, or SCREENSHOTR_E_CONN_FAILED if the
74 * connection to the device could not be established. 74 * connection to the device could not be established.
75 */ 75 */
76screenshotr_error_t screenshotr_client_new(idevice_t device, uint16_t port, 76screenshotr_error_t screenshotr_client_new(idevice_t device, lockdownd_service_descriptor_t service,
77 screenshotr_client_t * client) 77 screenshotr_client_t * client)
78{ 78{
79 if (!device || port == 0 || !client || *client) 79 if (!device || service->port == 0 || !client || *client)
80 return SCREENSHOTR_E_INVALID_ARG; 80 return SCREENSHOTR_E_INVALID_ARG;
81 81
82 device_link_service_client_t dlclient = NULL; 82 device_link_service_client_t dlclient = NULL;
83 screenshotr_error_t ret = screenshotr_error(device_link_service_client_new(device, port, &dlclient)); 83 screenshotr_error_t ret = screenshotr_error(device_link_service_client_new(device, service, &dlclient));
84 if (ret != SCREENSHOTR_E_SUCCESS) { 84 if (ret != SCREENSHOTR_E_SUCCESS) {
85 return ret; 85 return ret;
86 } 86 }