summaryrefslogtreecommitdiffstats
path: root/bindings/tutorial/tuto-4.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2019-04-11 13:09:56 +0200
committerJose Bollo <jose.bollo@iot.bzh>2019-04-12 10:55:54 +0200
commit6b2b09db8ee3cf88b09b59696d50b4fa2de79a72 (patch)
tree081c5ce2ad13790500dd14078d355796380539cf /bindings/tutorial/tuto-4.c
parent9cf1fcea338281f76eaac000930479b18dacef01 (diff)
Reordering of sample and tutorial bindings
The main idea here is to install the sample and tutorial bindings in specific directory. This will at the end help to package parts of the binder. It also includes a simplification of CMakeLists files. Also fix an error in packaging rpm. Bug-AGL: SPEC-2165 Change-Id: I494cc753796848cde849de1c3596893c78fa228f Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'bindings/tutorial/tuto-4.c')
-rw-r--r--bindings/tutorial/tuto-4.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/bindings/tutorial/tuto-4.c b/bindings/tutorial/tuto-4.c
deleted file mode 100644
index cb909fd0..00000000
--- a/bindings/tutorial/tuto-4.c
+++ /dev/null
@@ -1,29 +0,0 @@
-#define AFB_BINDING_VERSION 3
-#include <afb/afb-binding.h>
-
-void hello(afb_req_t req)
-{
- AFB_REQ_DEBUG(req, "hello world");
- afb_req_reply(req, NULL, NULL, "hello world");
-}
-
-const afb_verb_t verbs[] = {
- { .verb="hello", .callback=hello },
- { .verb=NULL }
-};
-
-
-static int init(afb_api_t api)
-{
- int rc = afb_api_require_api(api, "hello", 1);
- if (!rc)
- rc = afb_api_call_sync(api, "hello", "ping", NULL, NULL, NULL, NULL);
- return rc;
-}
-
-const afb_binding_t afbBindingExport = {
- .api = "tuto-4",
- .verbs = verbs,
- .init = init
-};
-