diff options
| author | 2010-01-13 01:21:21 +0100 | |
|---|---|---|
| committer | 2010-01-13 01:32:42 +0100 | |
| commit | 59647b653e6a80339a9a33adac99d238143eeeae (patch) | |
| tree | 882e2e9181e2998c7191d2a0e809ee90c8221e79 /src | |
| parent | de6251f720b242d42a434bb3aa614d3c5bee65df (diff) | |
| download | libimobiledevice-59647b653e6a80339a9a33adac99d238143eeeae.tar.gz libimobiledevice-59647b653e6a80339a9a33adac99d238143eeeae.tar.bz2 | |
notification_proxy: use correct type for port parameter and rename it
Diffstat (limited to 'src')
| -rw-r--r-- | src/NotificationProxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/NotificationProxy.c b/src/NotificationProxy.c index f526f70..e994c16 100644 --- a/src/NotificationProxy.c +++ b/src/NotificationProxy.c | |||
| @@ -84,7 +84,7 @@ static np_error_t np_error(property_list_service_error_t err) | |||
| 84 | /** Makes a connection to the NP service on the phone. | 84 | /** Makes a connection to the NP service on the phone. |
| 85 | * | 85 | * |
| 86 | * @param device The device to connect to. | 86 | * @param device The device to connect to. |
| 87 | * @param dst_port Destination port (usually given by lockdownd_start_service). | 87 | * @param port Destination port (usually given by lockdownd_start_service). |
| 88 | * @param client Pointer that will be set to a newly allocated np_client_t | 88 | * @param client Pointer that will be set to a newly allocated np_client_t |
| 89 | * upon successful return. | 89 | * upon successful return. |
| 90 | * | 90 | * |
| @@ -92,7 +92,7 @@ static np_error_t np_error(property_list_service_error_t err) | |||
| 92 | * or NP_E_CONN_FAILED when the connection to the device could not be | 92 | * or NP_E_CONN_FAILED when the connection to the device could not be |
| 93 | * established. | 93 | * established. |
| 94 | */ | 94 | */ |
| 95 | np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *client) | 95 | np_error_t np_client_new(iphone_device_t device, uint16_t port, np_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 @@ np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *clie | |||
| 102 | return NP_E_INVALID_ARG; | 102 | return NP_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 NP_E_CONN_FAILED; | 106 | return NP_E_CONN_FAILED; |
| 107 | } | 107 | } |
| 108 | 108 | ||
