summaryrefslogtreecommitdiff
path: root/lib/tsocket/tsocket.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-04-03 18:18:51 +0200
committerStefan Metzmacher <metze@samba.org>2009-05-01 17:42:00 +0200
commiteb723c2061ece9652638866b5336f3f377339c8f (patch)
tree793eab40c411f94876d8c59857989577a50271b3 /lib/tsocket/tsocket.h
parenta0830f4cb93997e235acb95e1bdb438626601974 (diff)
downloadsamba-eb723c2061ece9652638866b5336f3f377339c8f.tar.gz
samba-eb723c2061ece9652638866b5336f3f377339c8f.tar.bz2
samba-eb723c2061ece9652638866b5336f3f377339c8f.zip
tsocket: add tstream_writev_queue_send/recv()
metze
Diffstat (limited to 'lib/tsocket/tsocket.h')
-rw-r--r--lib/tsocket/tsocket.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/tsocket/tsocket.h b/lib/tsocket/tsocket.h
index aef73ae8c5..ed56995572 100644
--- a/lib/tsocket/tsocket.h
+++ b/lib/tsocket/tsocket.h
@@ -214,5 +214,13 @@ struct tevent_req *tstream_readv_pdu_send(TALLOC_CTX *mem_ctx,
void *next_vector_private);
int tstream_readv_pdu_recv(struct tevent_req *req, int *perrno);
+struct tevent_req *tstream_writev_queue_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct tstream_context *stream,
+ struct tevent_queue *queue,
+ const struct iovec *vector,
+ size_t count);
+int tstream_writev_queue_recv(struct tevent_req *req, int *perrno);
+
#endif /* _TSOCKET_H */