summaryrefslogtreecommitdiffstats
path: root/src/installation_proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/installation_proxy.c')
-rw-r--r--src/installation_proxy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/installation_proxy.c b/src/installation_proxy.c
index bab6ab2..eacab9d 100644
--- a/src/installation_proxy.c
+++ b/src/installation_proxy.c
@@ -95,20 +95,20 @@ static instproxy_error_t instproxy_error(property_list_service_error_t err)
95 * Connects to the installation_proxy service on the specified device. 95 * Connects to the installation_proxy service on the specified device.
96 * 96 *
97 * @param device The device to connect to 97 * @param device The device to connect to
98 * @param port Destination port (usually given by lockdownd_start_service). 98 * @param service The service descriptor returned by lockdownd_start_service.
99 * @param client Pointer that will be set to a newly allocated 99 * @param client Pointer that will be set to a newly allocated
100 * instproxy_client_t upon successful return. 100 * instproxy_client_t upon successful return.
101 * 101 *
102 * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value 102 * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value
103 * when an error occured. 103 * when an error occured.
104 */ 104 */
105instproxy_error_t instproxy_client_new(idevice_t device, uint16_t port, instproxy_client_t *client) 105instproxy_error_t instproxy_client_new(idevice_t device, lockdownd_service_descriptor_t service, instproxy_client_t *client)
106{ 106{
107 if (!device) 107 if (!device)
108 return INSTPROXY_E_INVALID_ARG; 108 return INSTPROXY_E_INVALID_ARG;
109 109
110 property_list_service_client_t plistclient = NULL; 110 property_list_service_client_t plistclient = NULL;
111 if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { 111 if (property_list_service_client_new(device, service, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
112 return INSTPROXY_E_CONN_FAILED; 112 return INSTPROXY_E_CONN_FAILED;
113 } 113 }
114 114