diff options
| author | 2013-02-26 03:20:56 +0100 | |
|---|---|---|
| committer | 2013-02-26 03:20:56 +0100 | |
| commit | fcc1bb855efb6860417ed827d3b50feba24a9a8b (patch) | |
| tree | 47d3c7d6a985dc647f7962329014c8116d657cc9 /src/notification_proxy.c | |
| parent | 3b54aac30447bc02fafd721a63a752968628e7e0 (diff) | |
| download | libimobiledevice-fcc1bb855efb6860417ed827d3b50feba24a9a8b.tar.gz libimobiledevice-fcc1bb855efb6860417ed827d3b50feba24a9a8b.tar.bz2 | |
Refactor port number use into service descriptor to enable SSL for services
This is a major change which breaks API but is required in order to support
SSL communication for services as used by network connections.
Diffstat (limited to 'src/notification_proxy.c')
| -rw-r--r-- | src/notification_proxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 6e09840..8fb9ad0 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c | |||
| @@ -98,7 +98,7 @@ static np_error_t np_error(property_list_service_error_t err) | |||
| 98 | * Connects to the notification_proxy on the specified device. | 98 | * Connects to the notification_proxy on the specified device. |
| 99 | * | 99 | * |
| 100 | * @param device The device to connect to. | 100 | * @param device The device to connect to. |
| 101 | * @param port Destination port (usually given by lockdownd_start_service). | 101 | * @param service The service descriptor returned by lockdownd_start_service. |
| 102 | * @param client Pointer that will be set to a newly allocated np_client_t | 102 | * @param client Pointer that will be set to a newly allocated np_client_t |
| 103 | * upon successful return. | 103 | * upon successful return. |
| 104 | * | 104 | * |
| @@ -106,13 +106,13 @@ static np_error_t np_error(property_list_service_error_t err) | |||
| 106 | * or NP_E_CONN_FAILED when the connection to the device could not be | 106 | * or NP_E_CONN_FAILED when the connection to the device could not be |
| 107 | * established. | 107 | * established. |
| 108 | */ | 108 | */ |
| 109 | np_error_t np_client_new(idevice_t device, uint16_t port, np_client_t *client) | 109 | np_error_t np_client_new(idevice_t device, lockdownd_service_descriptor_t service, np_client_t *client) |
| 110 | { | 110 | { |
| 111 | if (!device) | 111 | if (!device) |
| 112 | return NP_E_INVALID_ARG; | 112 | return NP_E_INVALID_ARG; |
| 113 | 113 | ||
| 114 | property_list_service_client_t plistclient = NULL; | 114 | property_list_service_client_t plistclient = NULL; |
| 115 | if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { | 115 | if (property_list_service_client_new(device, service, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { |
| 116 | return NP_E_CONN_FAILED; | 116 | return NP_E_CONN_FAILED; |
| 117 | } | 117 | } |
| 118 | 118 | ||
