summaryrefslogtreecommitdiffstats
path: root/src/afb-xreq.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-04-06 19:18:08 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-04-06 19:18:08 +0200
commit522569c5a9da8566f5213fa5b9b3abadf746331d (patch)
tree49fc9b87a75c5b92605e1eb0d5d4e4b502e04ad4 /src/afb-xreq.h
parentf05bc513bc0e0a977e6393e859cecbec77b420c6 (diff)
Reactivate hooking of requests
Change-Id: I0fc8429063d99e10344aaadba06480a470b9eb9d Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-xreq.h')
-rw-r--r--src/afb-xreq.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/afb-xreq.h b/src/afb-xreq.h
index 3413703f..3376bb22 100644
--- a/src/afb-xreq.h
+++ b/src/afb-xreq.h
@@ -52,6 +52,8 @@ struct afb_xreq
const struct afb_xreq_query_itf *queryitf;
int refcount; /**< current ref count */
int replied; /**< is replied? */
+ int hookflags; /**< flags for hooking */
+ int hookindex; /**< index for hooking */
struct afb_evt_listener *listener;
};
@@ -66,5 +68,6 @@ extern int afb_xreq_subscribe(struct afb_xreq *xreq, struct afb_event event);
extern int afb_xreq_unsubscribe(struct afb_xreq *xreq, struct afb_event event);
extern void afb_xreq_subcall(struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *cb_closure);
+extern void afb_xreq_begin(struct afb_xreq *xreq);
extern void afb_xreq_call(struct afb_xreq *xreq, int sessionflags, void (*callback)(struct afb_req req));