aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-04-07 18:14:49 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-04-07 18:14:49 +0200
commit5d088cbac7130e9ec8655218acb15dd22b20a7f8 (patch)
tree62bdeebf36824884e9ba9c3fc8a1d6721a83d0f9 /plugins
parent83ce3b29a598141f8f28afde655beb07ec78c312 (diff)
minor
Change-Id: I25e8fd32146af4c1986d25dd9dbf4085c06400b7 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/samples/HelloWorld.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c
index e29c22fa..7d99f6df 100644
--- a/plugins/samples/HelloWorld.c
+++ b/plugins/samples/HelloWorld.c
@@ -37,7 +37,7 @@ static int fillargs(json_object *args, struct afb_arg arg)
}
// Sample Generic Ping Debug API
-static void ping(struct afb_req request, json_object *jresp)
+static void ping(struct afb_req request, json_object *jresp, const char *tag)
{
static int pingcount = 0;
json_object *query;
@@ -45,12 +45,12 @@ static void ping(struct afb_req request, json_object *jresp)
query = json_object_new_object();
afb_req_iterate(request, (void*)fillargs, query);
- afb_req_success_f(request, jresp, "Ping Binder Daemon count=%d query=%s", ++pingcount, json_object_to_json_string(query));
+ afb_req_success_f(request, jresp, "Ping Binder Daemon tag=%s count=%d query=%s", tag, ++pingcount, json_object_to_json_string(query));
}
static void pingSample (struct afb_req request)
{
- ping(request, json_object_new_string ("Some String"));
+ ping(request, json_object_new_string ("Some String"), "pingSample");
}
static void pingFail (struct afb_req request)
@@ -60,12 +60,12 @@ static void pingFail (struct afb_req request)
static void pingNull (struct afb_req request)
{
- ping(request, NULL);
+ ping(request, NULL, "pingNull");
}
static void pingBug (struct afb_req request)
{
- pingNull((struct afb_req){NULL,NULL,NULL});
+ ping((struct afb_req){NULL,NULL,NULL}, NULL, "pingBug");
}
@@ -83,7 +83,7 @@ static void pingJson (struct afb_req request) {
json_object_object_add(jresp,"eobj", embed);
- ping(request, jresp);
+ ping(request, jresp, "pingJson");
}
// NOTE: this sample does not use session to keep test a basic as possible