diff options
Diffstat (limited to 'src/idevice.c')
| -rw-r--r-- | src/idevice.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/idevice.c b/src/idevice.c index b776e84..5912aeb 100644 --- a/src/idevice.c +++ b/src/idevice.c | |||
| @@ -463,6 +463,22 @@ LIBIMOBILEDEVICE_API idevice_error_t idevice_connection_receive(idevice_connecti | |||
| 463 | return internal_connection_receive(connection, data, len, recv_bytes); | 463 | return internal_connection_receive(connection, data, len, recv_bytes); |
| 464 | } | 464 | } |
| 465 | 465 | ||
| 466 | LIBIMOBILEDEVICE_API idevice_error_t idevice_connection_get_fd(idevice_connection_t connection, int *fd) | ||
| 467 | { | ||
| 468 | if (!connection || !fd) { | ||
| 469 | return IDEVICE_E_INVALID_ARG; | ||
| 470 | } | ||
| 471 | |||
| 472 | idevice_error_t result = IDEVICE_E_UNKNOWN_ERROR; | ||
| 473 | if (connection->type == CONNECTION_USBMUXD) { | ||
| 474 | *fd = (int)(long)connection->data; | ||
| 475 | result = IDEVICE_E_SUCCESS; | ||
| 476 | } else { | ||
| 477 | debug_info("Unknown connection type %d", connection->type); | ||
| 478 | } | ||
| 479 | return result; | ||
| 480 | } | ||
| 481 | |||
| 466 | LIBIMOBILEDEVICE_API idevice_error_t idevice_get_handle(idevice_t device, uint32_t *handle) | 482 | LIBIMOBILEDEVICE_API idevice_error_t idevice_get_handle(idevice_t device, uint32_t *handle) |
| 467 | { | 483 | { |
| 468 | if (!device) | 484 | if (!device) |
