aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-xreq.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-05-04 13:06:02 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-05-04 13:06:02 +0200
commit8a5d14c58817b7ee03f8e22ba734fdd8cc2bc780 (patch)
tree95ec6d12192174bedc036ae9cfd1a3f3f046fb73 /src/afb-xreq.h
parentc0562698d8e2613e488b320736255e6bbd49cb2c (diff)
Prepare xreq to be aware of the version
Change-Id: If8a1ac53e58ff644d7903aebd263d7d42308c756 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-xreq.h')
-rw-r--r--src/afb-xreq.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/afb-xreq.h b/src/afb-xreq.h
index a7b086bb..7327c222 100644
--- a/src/afb-xreq.h
+++ b/src/afb-xreq.h
@@ -124,10 +124,6 @@ extern void afb_xreq_init(struct afb_xreq *xreq, const struct afb_xreq_query_itf
extern void afb_xreq_process(struct afb_xreq *xreq, struct afb_apiset *apiset);
-extern int xreq_session_check(struct afb_xreq *xreq, int sessionflags);
-extern void xreq_session_apply(struct afb_xreq *xreq, int sessionflags);
-extern int xreq_session_check_apply(struct afb_xreq *xreq, int sessionflags);
-
-extern void afb_xreq_call(struct afb_xreq *xreq, void (*callback)(struct afb_req req));
-extern void afb_xreq_check_apply_call(struct afb_xreq *xreq, int sessionflags, void (*callback)(struct afb_req req));
+extern void afb_xreq_call_verb_v1(struct afb_xreq *xreq, const struct afb_verb_desc_v1 *verb);
+extern void afb_xreq_call_verb_v2(struct afb_xreq *xreq, const struct afb_verb_v2 *verb);