summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
73typedef void (*np_notify_cb_t) (const char *notification); 73typedef void (*np_notify_cb_t) (const char *notification);
74 74
75/* Interface */ 75/* Interface */
76np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *client); 76np_error_t np_client_new(iphone_device_t device, uint16_t port, np_client_t *client);
77np_error_t np_client_free(np_client_t client); 77np_error_t np_client_free(np_client_t client);
78np_error_t np_post_notification(np_client_t client, const char *notification); 78np_error_t np_post_notification(np_client_t client, const char *notification);
79np_error_t np_observe_notification(np_client_t client, const char *notification); 79np_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)
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 */
95np_error_t np_client_new(iphone_device_t device, int dst_port, np_client_t *client) 95np_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