idevice: Allow partial reads in idevice_connection_receive_timeout() and handle timeouts more adequate

idevice_connection_receive_timeout(), when in SSL mode, was assuming it should
always try to read the exact amount of data specified in `len` parameter.
While this works with most protocols that have length fields or fixed sized
headers/packets, some others (e.g. debugserver) break because it will request
a read but doesn't know the size that is expected to be returned beforehand.
This commit will handle timeouts better and return the number of bytes that
were read in such cases (instead of returning 0 bytes read + error).
Note that in the event of a timeout, IDEVICE_E_TIMEOUT will be returned even
though actual data might have been read. The number of bytes read will be
returned in recv_bytes.
diff --git a/src/idevice.c b/src/idevice.c
index c71c49b..071d7b9 100644
--- a/src/idevice.c
+++ b/src/idevice.c
@@ -610,7 +610,7 @@
 	}
 }
 
-static idevice_error_t socket_recv_to_idevice_error(int conn_error, uint32_t len, uint32_t received)
+static inline idevice_error_t socket_recv_to_idevice_error(int conn_error, uint32_t len, uint32_t received)
 {
 	if (conn_error < 0) {
 		switch (conn_error) {
@@ -669,6 +669,7 @@
 	if (connection->ssl_data) {
 		uint32_t received = 0;
 		int do_select = 1;
+		idevice_error_t error = IDEVICE_E_SSL_ERROR;
 
 		while (received < len) {
 #ifdef HAVE_OPENSSL
@@ -676,10 +677,10 @@
 #endif
 			if (do_select) {
 				int conn_error = socket_check_fd((int)(long)connection->data, FDM_READ, timeout);
-				idevice_error_t error = socket_recv_to_idevice_error(conn_error, len, received);
-
+				error = socket_recv_to_idevice_error(conn_error, len, received);
 				switch (error) {
 					case IDEVICE_E_SUCCESS:
+					case IDEVICE_E_TIMEOUT:
 						break;
 					case IDEVICE_E_UNKNOWN_ERROR:
 					default:
@@ -687,7 +688,9 @@
 						return error;
 				}
 			}
-
+			if (error == IDEVICE_E_TIMEOUT) {
+				break;
+			}
 #ifdef HAVE_OPENSSL
 			int r = SSL_read(connection->ssl_data->session, (void*)((char*)(data+received)), (int)len-received);
 			if (r > 0) {
@@ -711,8 +714,8 @@
 
 		debug_info("SSL_read %d, received %d", len, received);
 		if (received < len) {
-			*recv_bytes = 0;
-			return IDEVICE_E_SSL_ERROR;
+			*recv_bytes = received;
+			return error;
 		}
 
 		*recv_bytes = received;