summaryrefslogtreecommitdiffstats
path: root/src/InstallationProxy.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-01-13 01:17:13 +0100
committerGravatar Martin Szulecki2010-01-13 01:25:47 +0100
commit27e59cee36975c40e7dd58f087318dd0aecd86ce (patch)
treedcc16aa540bf9f3febff85827f5c867793c72ed9 /src/InstallationProxy.c
parentfae09a370b6d2a3b8b2d6fbfe8895736a20079a6 (diff)
downloadlibimobiledevice-27e59cee36975c40e7dd58f087318dd0aecd86ce.tar.gz
libimobiledevice-27e59cee36975c40e7dd58f087318dd0aecd86ce.tar.bz2
installation_proxy: use correct type for port parameter and rename it
Diffstat (limited to 'src/InstallationProxy.c')
-rw-r--r--src/InstallationProxy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/InstallationProxy.c b/src/InstallationProxy.c
index 8b53a2d..9ada994 100644
--- a/src/InstallationProxy.c
+++ b/src/InstallationProxy.c
@@ -85,14 +85,14 @@ static instproxy_error_t instproxy_error(property_list_service_error_t err)
* Creates a new installation_proxy client
*
* @param device The device to connect to
- * @param dst_port Destination port (usually given by lockdownd_start_service).
+ * @param port Destination port (usually given by lockdownd_start_service).
* @param client Pointer that will be set to a newly allocated
* instproxy_client_t upon successful return.
*
* @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value
* when an error occured.
*/
-instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, instproxy_client_t *client)
+instproxy_error_t instproxy_client_new(iphone_device_t device, uint16_t port, instproxy_client_t *client)
{
/* makes sure thread environment is available */
if (!g_thread_supported())
@@ -102,7 +102,7 @@ instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, ins
return INSTPROXY_E_INVALID_ARG;
property_list_service_client_t plistclient = NULL;
- if (property_list_service_client_new(device, dst_port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
+ if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
return INSTPROXY_E_CONN_FAILED;
}