diff options
author | Ben Wagner | 2020-02-11 16:34:20 -0500 |
---|---|---|
committer | Nikias Bassen | 2022-03-29 12:15:09 +0200 |
commit | 310cf5e8173d82cfbafd35cb18755ea71a8b1447 (patch) | |
tree | da61c6a2547fe891a82bcfca0db6d4171ab682ea /include | |
parent | abba1e82679a58a32a943cded58204d14a231ef6 (diff) | |
download | libimobiledevice-310cf5e8173d82cfbafd35cb18755ea71a8b1447.tar.gz libimobiledevice-310cf5e8173d82cfbafd35cb18755ea71a8b1447.tar.bz2 |
Format
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. |