summaryrefslogtreecommitdiffstats
path: root/src/utils-jbus.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2015-12-15 11:19:49 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2015-12-15 11:19:49 +0100
commitf145b390adea074c40470b677d8721877520150a (patch)
tree2e7687dbbb2f0bbcd7f21432b0358ea2184c1097 /src/utils-jbus.h
parent509d0ed17a1f59605b7d36f60561d0cafcadc9de (diff)
adding jbus
Change-Id: Ia712f77d32e3a7b0b15fcf2066b562d8d4c02169
Diffstat (limited to 'src/utils-jbus.h')
-rw-r--r--src/utils-jbus.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/utils-jbus.h b/src/utils-jbus.h
new file mode 100644
index 0000000..f1ec78f
--- /dev/null
+++ b/src/utils-jbus.h
@@ -0,0 +1,31 @@
+/*
+ Copyright 2015 IoT.bzh
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+
+struct jreq;
+struct jbus;
+
+
+struct jbus *create_jbus(int session, const char *path);
+void jbus_addref(struct jbus *jbus);
+void jbus_unref(struct jbus *jbus);
+
+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_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);
+