From f7a7b349947235a0fac57159e3883b05dd51db29 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 17 Apr 2009 18:43:22 +0200 Subject: removed unused function --- iphone.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'iphone.c') diff --git a/iphone.c b/iphone.c index c759899..cd91b2e 100644 --- a/iphone.c +++ b/iphone.c @@ -1133,22 +1133,15 @@ iphone_error_t iphone_mux_get_error(iphone_umux_client_t client) return client->error; } -/** This is a higher-level USBMuxTCP-like function +/** This function reads from the client's recv_buffer. * - * @param connection The connection to receive data on. + * @param client The client to receive data from. * @param data Where to put the data we receive. * @param datalen How much data to read. + * @param timeout How many milliseconds to wait for data * * @return IPHONE_E_SUCCESS or error code if failure. */ -iphone_error_t iphone_mux_recv(iphone_umux_client_t client, char *data, uint32_t datalen, uint32_t * recv_bytes) -{ - return iphone_mux_recv_timeout(client, data, datalen, recv_bytes, 0); -} - -/** - @param timeout - */ iphone_error_t iphone_mux_recv_timeout(iphone_umux_client_t client, char *data, uint32_t datalen, uint32_t * recv_bytes, int timeout) { -- cgit v1.1-32-gdbae