diff options
| author | 2010-03-15 18:07:52 +0100 | |
|---|---|---|
| committer | 2010-03-15 19:13:02 +0100 | |
| commit | d74b7217c374198ae79c1690f6f3234ed023021d (patch) | |
| tree | fe26c32fde27549782fe10084780931828746002 /src/device_link_service.c | |
| parent | 2aae49b31f77845cc03ec8057ae4eae65495fe01 (diff) | |
| download | libimobiledevice-d74b7217c374198ae79c1690f6f3234ed023021d.tar.gz libimobiledevice-d74b7217c374198ae79c1690f6f3234ed023021d.tar.bz2 | |
device_link_service: process_message functions renamed using send/receive
Diffstat (limited to 'src/device_link_service.c')
| -rw-r--r-- | src/device_link_service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device_link_service.c b/src/device_link_service.c index 4140911..7baef02 100644 --- a/src/device_link_service.c +++ b/src/device_link_service.c | |||
| @@ -264,7 +264,7 @@ device_link_service_error_t device_link_service_disconnect(device_link_service_c | |||
| 264 | * message is not a PLIST_DICT, or DEVICE_LINK_SERVICE_E_MUX_ERROR if | 264 | * message is not a PLIST_DICT, or DEVICE_LINK_SERVICE_E_MUX_ERROR if |
| 265 | * the DLMessageProcessMessage plist could not be sent. | 265 | * the DLMessageProcessMessage plist could not be sent. |
| 266 | */ | 266 | */ |
| 267 | device_link_service_error_t device_link_service_process_message(device_link_service_client_t client, plist_t message) | 267 | device_link_service_error_t device_link_service_send_process_message(device_link_service_client_t client, plist_t message) |
| 268 | { | 268 | { |
| 269 | if (!client || !client->parent || !message) | 269 | if (!client || !client->parent || !message) |
| 270 | return DEVICE_LINK_SERVICE_E_INVALID_ARG; | 270 | return DEVICE_LINK_SERVICE_E_INVALID_ARG; |
| @@ -297,7 +297,7 @@ device_link_service_error_t device_link_service_process_message(device_link_serv | |||
| 297 | * invalid or is not a DLMessageProcessMessage, | 297 | * invalid or is not a DLMessageProcessMessage, |
| 298 | * or DEVICE_LINK_SERVICE_E_MUX_ERROR if receiving from device fails. | 298 | * or DEVICE_LINK_SERVICE_E_MUX_ERROR if receiving from device fails. |
| 299 | */ | 299 | */ |
| 300 | device_link_service_error_t device_link_service_get_process_message(device_link_service_client_t client, plist_t *message) | 300 | device_link_service_error_t device_link_service_receive_process_message(device_link_service_client_t client, plist_t *message) |
| 301 | { | 301 | { |
| 302 | if (!client || !client->parent || !message) | 302 | if (!client || !client->parent || !message) |
| 303 | return DEVICE_LINK_SERVICE_E_INVALID_ARG; | 303 | return DEVICE_LINK_SERVICE_E_INVALID_ARG; |
