diff options
| author | 2013-02-26 03:20:56 +0100 | |
|---|---|---|
| committer | 2013-02-26 03:20:56 +0100 | |
| commit | fcc1bb855efb6860417ed827d3b50feba24a9a8b (patch) | |
| tree | 47d3c7d6a985dc647f7962329014c8116d657cc9 /src/diagnostics_relay.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/diagnostics_relay.c')
| -rw-r--r-- | src/diagnostics_relay.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/diagnostics_relay.c b/src/diagnostics_relay.c index 7178952..3469ae4 100644 --- a/src/diagnostics_relay.c +++ b/src/diagnostics_relay.c | |||
| @@ -73,7 +73,7 @@ static int diagnostics_relay_check_result(plist_t dict) | |||
| 73 | * Connects to the diagnostics_relay service on the specified device. | 73 | * Connects to the diagnostics_relay service on the specified device. |
| 74 | * | 74 | * |
| 75 | * @param device The device to connect to. | 75 | * @param device The device to connect to. |
| 76 | * @param port Destination port (usually given by lockdownd_start_service). | 76 | * @param service The service descriptor returned by lockdownd_start_service. |
| 77 | * @param client Reference that will point to a newly allocated | 77 | * @param client Reference that will point to a newly allocated |
| 78 | * diagnostics_relay_client_t upon successful return. | 78 | * diagnostics_relay_client_t upon successful return. |
| 79 | * | 79 | * |
| @@ -81,14 +81,14 @@ static int diagnostics_relay_check_result(plist_t dict) | |||
| 81 | * DIAGNOSTICS_RELAY_E_INVALID_ARG when one of the parameters is invalid, | 81 | * DIAGNOSTICS_RELAY_E_INVALID_ARG when one of the parameters is invalid, |
| 82 | * or DIAGNOSTICS_RELAY_E_MUX_ERROR when the connection failed. | 82 | * or DIAGNOSTICS_RELAY_E_MUX_ERROR when the connection failed. |
| 83 | */ | 83 | */ |
| 84 | diagnostics_relay_error_t diagnostics_relay_client_new(idevice_t device, uint16_t port, diagnostics_relay_client_t *client) | 84 | diagnostics_relay_error_t diagnostics_relay_client_new(idevice_t device, lockdownd_service_descriptor_t service, diagnostics_relay_client_t *client) |
| 85 | { | 85 | { |
| 86 | if (!device || port == 0 || !client || *client) { | 86 | if (!device || service->port == 0 || !client || *client) { |
| 87 | return DIAGNOSTICS_RELAY_E_INVALID_ARG; | 87 | return DIAGNOSTICS_RELAY_E_INVALID_ARG; |
| 88 | } | 88 | } |
| 89 | 89 | ||
| 90 | property_list_service_client_t plistclient = NULL; | 90 | property_list_service_client_t plistclient = NULL; |
| 91 | if (property_list_service_client_new(device, port, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { | 91 | if (property_list_service_client_new(device, service, &plistclient) != PROPERTY_LIST_SERVICE_E_SUCCESS) { |
| 92 | return DIAGNOSTICS_RELAY_E_MUX_ERROR; | 92 | return DIAGNOSTICS_RELAY_E_MUX_ERROR; |
| 93 | } | 93 | } |
| 94 | 94 | ||
