aboutsummaryrefslogtreecommitdiff
path: root/client/libacron/include/net.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/libacron/include/net.h')
-rw-r--r--client/libacron/include/net.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/libacron/include/net.h b/client/libacron/include/net.h
index 398450d..5cf8f67 100644
--- a/client/libacron/include/net.h
+++ b/client/libacron/include/net.h
@@ -41,8 +41,9 @@ LIBAC_EXPORT int ac_disconnect(void *connection);
* Blocks the current thread until a new response or event arrives.
* @param connection A non-NULL and connected connection passed as-is from ac_connect.
* @param response Output response of either an event or a response. May be NULL even if it succeeds.
+ * @param timeout Read timeout in seconds. Set to 0 to wait infinitely.
* @return AC_E_OK or an error code. When failed, *response is NULL.
*/
-LIBAC_EXPORT int ac_receive(void *connection, ac_obj_t **response);
+LIBAC_EXPORT int ac_receive(void *connection, ac_obj_t **response, long timeout);
#endif /* LIBAC_NET_H */