summaryrefslogtreecommitdiff
path: root/lib/async_req/async_sock.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-02-22 20:16:32 +0100
committerVolker Lendecke <vl@samba.org>2009-02-24 20:40:47 +0100
commit76c6330dfb78e536bc7620719d12859ff7418c36 (patch)
tree733ac84564d20907866569af6490d9c5154b3917 /lib/async_req/async_sock.h
parent39976035ebd669d168afa91274d7e368305bf69d (diff)
downloadsamba-76c6330dfb78e536bc7620719d12859ff7418c36.tar.gz
samba-76c6330dfb78e536bc7620719d12859ff7418c36.tar.bz2
samba-76c6330dfb78e536bc7620719d12859ff7418c36.zip
Add async writev
Diffstat (limited to 'lib/async_req/async_sock.h')
-rw-r--r--lib/async_req/async_sock.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/async_req/async_sock.h b/lib/async_req/async_sock.h
index 784571ed5a..3d70673c17 100644
--- a/lib/async_req/async_sock.h
+++ b/lib/async_req/async_sock.h
@@ -52,4 +52,8 @@ struct async_req *recvall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
int flags);
ssize_t recvall_recv(struct async_req *req, int *perr);
+struct tevent_req *writev_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
+ int fd, struct iovec *iov, int count);
+ssize_t writev_recv(struct tevent_req *req, int *perrno);
+
#endif