diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/debugserver.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/libimobiledevice/debugserver.h b/include/libimobiledevice/debugserver.h index 03f97a4..90ba514 100644 --- a/include/libimobiledevice/debugserver.h +++ b/include/libimobiledevice/debugserver.h @@ -181,11 +181,16 @@ debugserver_error_t debugserver_client_set_ack_mode(debugserver_client_t client, /** * Sets behavior when awaiting a response from the server. * - * @see debugserver_client_send_command, debugserver_client_receive_response, debugserver_client_receive + * @see debugserver_client_send_command, debugserver_client_receive_response, + * debugserver_client_receive * * @param client The debugserver client - * @param cancel_receive A function pointer that will be called approximately every receive_loop_timeout milliseconds; the function should return a boolean flag specifying whether to stop waiting for a response. If NULL, behaves as if it always returns true. - * @param receive_loop_timeout Time in milliseconds between calls to cancel_receive. + * @param cancel_receive A function pointer that will be called approximately + * every receive_loop_timeout milliseconds; the function should return a + * boolean flag specifying whether to stop waiting for a response. If NULL, + * behaves as if it always returns true. + * @param receive_loop_timeout Time in milliseconds between calls to + * cancel_receive. * * @return DEBUGSERVER_E_SUCCESS on success, or an DEBUGSERVER_E_* error * code otherwise. |