diff options
Diffstat (limited to 'src/mobilebackup2.c')
| -rw-r--r-- | src/mobilebackup2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mobilebackup2.c b/src/mobilebackup2.c index 2089c87..bcf5944 100644 --- a/src/mobilebackup2.c +++ b/src/mobilebackup2.c | |||
| @@ -65,7 +65,7 @@ static mobilebackup2_error_t mobilebackup2_error(device_link_service_error_t err | |||
| 65 | * Connects to the mobilebackup2 service on the specified device. | 65 | * Connects to the mobilebackup2 service on the specified device. |
| 66 | * | 66 | * |
| 67 | * @param device The device to connect to. | 67 | * @param device The device to connect to. |
| 68 | * @param port Destination port (usually given by lockdownd_start_service). | 68 | * @param service The service descriptor returned by lockdownd_start_service. |
| 69 | * @param client Pointer that will be set to a newly allocated | 69 | * @param client Pointer that will be set to a newly allocated |
| 70 | * mobilebackup2_client_t upon successful return. | 70 | * mobilebackup2_client_t upon successful return. |
| 71 | * | 71 | * |
| @@ -73,14 +73,14 @@ static mobilebackup2_error_t mobilebackup2_error(device_link_service_error_t err | |||
| 73 | * if one or more parameter is invalid, or MOBILEBACKUP2_E_BAD_VERSION | 73 | * if one or more parameter is invalid, or MOBILEBACKUP2_E_BAD_VERSION |
| 74 | * if the mobilebackup2 version on the device is newer. | 74 | * if the mobilebackup2 version on the device is newer. |
| 75 | */ | 75 | */ |
| 76 | mobilebackup2_error_t mobilebackup2_client_new(idevice_t device, uint16_t port, | 76 | mobilebackup2_error_t mobilebackup2_client_new(idevice_t device, lockdownd_service_descriptor_t service, |
| 77 | mobilebackup2_client_t * client) | 77 | mobilebackup2_client_t * client) |
| 78 | { | 78 | { |
| 79 | if (!device || port == 0 || !client || *client) | 79 | if (!device || service->port == 0 || !client || *client) |
| 80 | return MOBILEBACKUP2_E_INVALID_ARG; | 80 | return MOBILEBACKUP2_E_INVALID_ARG; |
| 81 | 81 | ||
| 82 | device_link_service_client_t dlclient = NULL; | 82 | device_link_service_client_t dlclient = NULL; |
| 83 | mobilebackup2_error_t ret = mobilebackup2_error(device_link_service_client_new(device, port, &dlclient)); | 83 | mobilebackup2_error_t ret = mobilebackup2_error(device_link_service_client_new(device, service, &dlclient)); |
| 84 | if (ret != MOBILEBACKUP2_E_SUCCESS) { | 84 | if (ret != MOBILEBACKUP2_E_SUCCESS) { |
| 85 | return ret; | 85 | return ret; |
| 86 | } | 86 | } |
