summaryrefslogtreecommitdiff
path: root/source3/include/async_req.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/async_req.h')
-rw-r--r--source3/include/async_req.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/async_req.h b/source3/include/async_req.h
index bbe52da723..1b8dbf3346 100644
--- a/source3/include/async_req.h
+++ b/source3/include/async_req.h
@@ -141,5 +141,13 @@ struct async_req *async_wait_send(TALLOC_CTX *mem_ctx,
NTSTATUS async_wait_recv(struct async_req *req);
+struct async_req_queue;
+
+struct async_req_queue *async_req_queue_init(TALLOC_CTX *mem_ctx);
+
+bool async_req_enqueue(struct async_req_queue *queue,
+ struct event_context *ev,
+ struct async_req *req,
+ void (*trigger)(struct async_req *req));
#endif