diff options
| -rw-r--r-- | include/libiphone/installation_proxy.h | 2 | ||||
| -rw-r--r-- | src/InstallationProxy.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/libiphone/installation_proxy.h b/include/libiphone/installation_proxy.h index f432e8a..f796054 100644 --- a/include/libiphone/installation_proxy.h +++ b/include/libiphone/installation_proxy.h | |||
| @@ -56,7 +56,7 @@ typedef struct instproxy_client_int *instproxy_client_t; | |||
| 56 | typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status); | 56 | typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status); |
| 57 | 57 | ||
| 58 | /* Interface */ | 58 | /* Interface */ |
| 59 | instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, instproxy_client_t *client); | 59 | instproxy_error_t instproxy_client_new(iphone_device_t device, uint16_t port, instproxy_client_t *client); |
| 60 | instproxy_error_t instproxy_client_free(instproxy_client_t client); | 60 | instproxy_error_t instproxy_client_free(instproxy_client_t client); |
| 61 | 61 | ||
| 62 | instproxy_error_t instproxy_browse(instproxy_client_t client, instproxy_apptype_t apptype, plist_t *result); | 62 | instproxy_error_t instproxy_browse(instproxy_client_t client, instproxy_apptype_t apptype, plist_t *result); |
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) | |||
| 85 | * Creates a new installation_proxy client | 85 | * Creates a new installation_proxy client |
| 86 | * | 86 | * |
| 87 | * @param device The device to connect to | 87 | * @param device The device to connect to |
| 88 | * @param dst_port Destination port (usually given by lockdownd_start_service). | 88 | * @param port Destination port (usually given by lockdownd_start_service). |
| 89 | * @param client Pointer that will be set to a newly allocated | 89 | * @param client Pointer that will be set to a newly allocated |
| 90 | * instproxy_client_t upon successful return. | 90 | * instproxy_client_t upon successful return. |
| 91 | * | 91 | * |
| 92 | * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value | 92 | * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value |
| 93 | * when an error occured. | 93 | * when an error occured. |
| 94 | */ | 94 | */ |
| 95 | instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, instproxy_client_t *client) | 95 | instproxy_error_t instproxy_client_new(iphone_device_t device, uint16_t port, instproxy_client_t *client) |
| 96 | { | 96 | { |
| 97 | /* makes sure thread environment is available */ | 97 | /* makes sure thread environment is available */ |
| 98 | if (!g_thread_supported()) | 98 | if (!g_thread_supported()) |
| @@ -102,7 +102,7 @@ instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, ins | |||
| 102 | return INSTPROXY_E_INVALID_ARG; | 102 | return INSTPROXY_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, dst_port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { | 105 | if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { |
| 106 | return INSTPROXY_E_CONN_FAILED; | 106 | return INSTPROXY_E_CONN_FAILED; |
| 107 | } | 107 | } |
| 108 | 108 | ||
