diff options
author | 2020-02-11 16:34:20 -0500 | |
---|---|---|
committer | 2022-03-29 12:15:09 +0200 | |
commit | 310cf5e8173d82cfbafd35cb18755ea71a8b1447 (patch) | |
tree | da61c6a2547fe891a82bcfca0db6d4171ab682ea /include/libimobiledevice/debugserver.h | |
parent | abba1e82679a58a32a943cded58204d14a231ef6 (diff) | |
download | libimobiledevice-310cf5e8173d82cfbafd35cb18755ea71a8b1447.tar.gz libimobiledevice-310cf5e8173d82cfbafd35cb18755ea71a8b1447.tar.bz2 |
Format
Diffstat (limited to 'include/libimobiledevice/debugserver.h')
-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, | |||
181 | /** | 181 | /** |
182 | * Sets behavior when awaiting a response from the server. | 182 | * Sets behavior when awaiting a response from the server. |
183 | * | 183 | * |
184 | * @see debugserver_client_send_command, debugserver_client_receive_response, debugserver_client_receive | 184 | * @see debugserver_client_send_command, debugserver_client_receive_response, |
185 | * debugserver_client_receive | ||
185 | * | 186 | * |
186 | * @param client The debugserver client | 187 | * @param client The debugserver client |
187 | * @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. | 188 | * @param cancel_receive A function pointer that will be called approximately |
188 | * @param receive_loop_timeout Time in milliseconds between calls to cancel_receive. | 189 | * every receive_loop_timeout milliseconds; the function should return a |
190 | * boolean flag specifying whether to stop waiting for a response. If NULL, | ||
191 | * behaves as if it always returns true. | ||
192 | * @param receive_loop_timeout Time in milliseconds between calls to | ||
193 | * cancel_receive. | ||
189 | * | 194 | * |
190 | * @return DEBUGSERVER_E_SUCCESS on success, or an DEBUGSERVER_E_* error | 195 | * @return DEBUGSERVER_E_SUCCESS on success, or an DEBUGSERVER_E_* error |
191 | * code otherwise. | 196 | * code otherwise. |