summaryrefslogtreecommitdiffstats
path: root/src/file_relay.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/file_relay.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/file_relay.c')
-rw-r--r--src/file_relay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/file_relay.c b/src/file_relay.c
index 680e28d..e72be66 100644
--- a/src/file_relay.c
+++ b/src/file_relay.c
@@ -28,7 +28,7 @@
28 * Connects to the file_relay service on the specified device. 28 * Connects to the file_relay service on the specified device.
29 * 29 *
30 * @param device The device to connect to. 30 * @param device The device to connect to.
31 * @param port Destination port (usually given by lockdownd_start_service). 31 * @param service The service descriptor returned by lockdownd_start_service.
32 * @param client Reference that will point to a newly allocated 32 * @param client Reference that will point to a newly allocated
33 * file_relay_client_t upon successful return. 33 * file_relay_client_t upon successful return.
34 * 34 *
@@ -36,14 +36,14 @@
36 * FILE_RELAY_E_INVALID_ARG when one of the parameters is invalid, 36 * FILE_RELAY_E_INVALID_ARG when one of the parameters is invalid,
37 * or FILE_RELAY_E_MUX_ERROR when the connection failed. 37 * or FILE_RELAY_E_MUX_ERROR when the connection failed.
38 */ 38 */
39file_relay_error_t file_relay_client_new(idevice_t device, uint16_t port, file_relay_client_t *client) 39file_relay_error_t file_relay_client_new(idevice_t device, lockdownd_service_descriptor_t service, file_relay_client_t *client)
40{ 40{
41 if (!device || port == 0 || !client || *client) { 41 if (!device || service->port == 0 || !client || *client) {
42 return FILE_RELAY_E_INVALID_ARG; 42 return FILE_RELAY_E_INVALID_ARG;
43 } 43 }
44 44
45 property_list_service_client_t plistclient = NULL; 45 property_list_service_client_t plistclient = NULL;
46 if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { 46 if (property_list_service_client_new(device, service, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
47 return FILE_RELAY_E_MUX_ERROR; 47 return FILE_RELAY_E_MUX_ERROR;
48 } 48 }
49 49