summaryrefslogtreecommitdiff
path: root/lib/async_req/async_sock.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-07-26 15:06:44 +0200
committerVolker Lendecke <vlendec@samba.org>2011-07-28 17:42:22 +0200
commit428196799028d80a5fe3b09392cb7015049c5397 (patch)
tree1e64c15664da4203576571bbfb1bbb76c9b12ff3 /lib/async_req/async_sock.h
parente84c7a2e26d206f38bcb94d4d1b6c854cdd4094c (diff)
downloadsamba-428196799028d80a5fe3b09392cb7015049c5397.tar.gz
samba-428196799028d80a5fe3b09392cb7015049c5397.tar.bz2
samba-428196799028d80a5fe3b09392cb7015049c5397.zip
Add wait_for_read_send/recv
Wait for readability of a socket as a tevent_req
Diffstat (limited to 'lib/async_req/async_sock.h')
-rw-r--r--lib/async_req/async_sock.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/async_req/async_sock.h b/lib/async_req/async_sock.h
index 8d98886e2b..1910643ef7 100644
--- a/lib/async_req/async_sock.h
+++ b/lib/async_req/async_sock.h
@@ -61,4 +61,9 @@ struct tevent_req *read_packet_send(TALLOC_CTX *mem_ctx,
ssize_t read_packet_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
uint8_t **pbuf, int *perrno);
+struct tevent_req *wait_for_read_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ int fd);
+bool wait_for_read_recv(struct tevent_req *req, int *perr);
+
#endif