summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-01-13 01:21:21 +0100
committerGravatar Martin Szulecki2010-01-13 01:32:42 +0100
commit59647b653e6a80339a9a33adac99d238143eeeae (patch)
tree882e2e9181e2998c7191d2a0e809ee90c8221e79
parentde6251f720b242d42a434bb3aa614d3c5bee65df (diff)
downloadlibimobiledevice-59647b653e6a80339a9a33adac99d238143eeeae.tar.gz
libimobiledevice-59647b653e6a80339a9a33adac99d238143eeeae.tar.bz2
notification_proxy: use correct type for port parameter and rename it
-rw-r--r--include/libiphone/notification_proxy.h2
-rw-r--r--src/NotificationProxy.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/include/libiphone/notification_proxy.h b/include/libiphone/notification_proxy.h
index 3a77297..b58fc68 100644
--- a/include/libiphone/notification_proxy.h
+++ b/include/libiphone/notification_proxy.h
@@ -73,7 +73,7 @@ typedef struct np_client_int *np_client_t;
typedef void (*np_notify_cb_t) (const char *notification);
/* Interface */
-np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *client);
+np_error_t np_client_new(iphone_device_t device, uint16_t port, np_client_t *client);
np_error_t np_client_free(np_client_t client);
np_error_t np_post_notification(np_client_t client, const char *notification);
np_error_t np_observe_notification(np_client_t client, const char *notification);
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)
/** Makes a connection to the NP service on the phone.
*
* @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 np_client_t
* upon successful return.
*
@@ -92,7 +92,7 @@ static np_error_t np_error(property_list_service_error_t err)
* or NP_E_CONN_FAILED when the connection to the device could not be
* established.
*/
-np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *client)
+np_error_t np_client_new(iphone_device_t device, uint16_t port, np_client_t *client)
{
/* makes sure thread environment is available */
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
return NP_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 NP_E_CONN_FAILED;
}