summaryrefslogtreecommitdiffstats
path: root/src/utils-jbus.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2015-12-15 11:45:48 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2015-12-15 11:45:48 +0100
commit32c6eecb9955e94b4d68efc09912efe88140ce83 (patch)
treeae81a9b8cc5c20cb1263f72ec40d833f20c9ddec /src/utils-jbus.h
parent6c6177fcf8fdcc62c42a18407e95c7577897e10c (diff)
bug fix for jbus
Change-Id: I4dd2ec2ba545924a3667266db990f2c1c99eadbc
Diffstat (limited to 'src/utils-jbus.h')
-rw-r--r--src/utils-jbus.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils-jbus.h b/src/utils-jbus.h
index f1ec78f..e751086 100644
--- a/src/utils-jbus.h
+++ b/src/utils-jbus.h
@@ -23,8 +23,10 @@ struct jbus *create_jbus(int session, const char *path);
void jbus_addref(struct jbus *jbus);
void jbus_unref(struct jbus *jbus);
+int jbus_replyj(struct jreq *jreq, const char *reply);
int jbus_reply(struct jreq *jreq, struct json_object *reply);
int jbus_add_service(struct jbus *jbus, const char *method, void (*oncall)(struct jreq *, struct json_object *));
+int jbus_start_serving(struct jbus *jbus);
int jbus_callj(struct jbus *jbus, const char *method, const char *query, void (*onresp)(int, struct json_object *, void *), void *data);
int jbus_call(struct jbus *jbus, const char *method, struct json_object *query, void (*onresp)(int, struct json_object *response, void *), void *data);