diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-03 19:10:57 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-04 16:42:40 +0100 |
commit | ebacce2efe6dbb27a9e7962597da8ef783473f6a (patch) | |
tree | 3bc4cea4f00e43097dfd3cf0f2dc29bd48ed4799 /source3/include | |
parent | e058e51d63d4a476a1b49941cd8a8611d9164eba (diff) | |
download | samba-ebacce2efe6dbb27a9e7962597da8ef783473f6a.tar.gz samba-ebacce2efe6dbb27a9e7962597da8ef783473f6a.tar.bz2 samba-ebacce2efe6dbb27a9e7962597da8ef783473f6a.zip |
Add async timeout helpers
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/async_req.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/async_req.h b/source3/include/async_req.h index 2633027e37..bbe52da723 100644 --- a/source3/include/async_req.h +++ b/source3/include/async_req.h @@ -132,4 +132,14 @@ bool async_req_is_error(struct async_req *req, NTSTATUS *status); NTSTATUS async_req_simple_recv(struct async_req *req); +bool async_req_set_timeout(struct async_req *req, struct event_context *ev, + struct timeval to); + +struct async_req *async_wait_send(TALLOC_CTX *mem_ctx, + struct event_context *ev, + struct timeval to); + +NTSTATUS async_wait_recv(struct async_req *req); + + #endif |