summaryrefslogtreecommitdiff
path: root/lib/tsocket/tsocket.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-03-28 23:25:28 +0100
committerStefan Metzmacher <metze@samba.org>2009-04-02 21:53:59 +0200
commit85742dbc0651a3413e90afa18023cd55ae72e6db (patch)
treed2934a2b0d073d0192457854bcb2f7287c560fe5 /lib/tsocket/tsocket.h
parent8d98070a9f0a1a17d05e381b8e4c5a8f7a7e8233 (diff)
downloadsamba-85742dbc0651a3413e90afa18023cd55ae72e6db.tar.gz
samba-85742dbc0651a3413e90afa18023cd55ae72e6db.tar.bz2
samba-85742dbc0651a3413e90afa18023cd55ae72e6db.zip
tsocket: add tdgram_sendto_queue_send/recv()
metze
Diffstat (limited to 'lib/tsocket/tsocket.h')
-rw-r--r--lib/tsocket/tsocket.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/tsocket/tsocket.h b/lib/tsocket/tsocket.h
index 077fd1ef35..ec891c34dd 100644
--- a/lib/tsocket/tsocket.h
+++ b/lib/tsocket/tsocket.h
@@ -259,5 +259,18 @@ struct tevent_req *tsocket_readv_send(struct tsocket_context *sock,
void *private_data);
int tsocket_readv_recv(struct tevent_req *req, int *perrno);
+/*
+ * Queue helpers
+ */
+
+struct tevent_req *tdgram_sendto_queue_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct tdgram_context *dgram,
+ struct tevent_queue *queue,
+ const uint8_t *buf,
+ size_t len,
+ struct tsocket_address *dst);
+ssize_t tdgram_sendto_queue_recv(struct tevent_req *req, int *perrno);
+
#endif /* _TSOCKET_H */