diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2016-05-28 11:55:08 +0200 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2016-05-28 11:55:08 +0200 |
commit | 1a66f6a8c0b213e14bc0b1896bfaa68a5c2a5002 (patch) | |
tree | 0f84cd21a3fd393bddcab603d2452c84c97defa6 /plugins/samples/HelloWorld.c | |
parent | fcdb6bb4b88510614f5eb96545ea724ce442d606 (diff) | |
parent | eaab2fbbed4601415b5be052b39a0c0df11fdc38 (diff) |
Merge branch 'master' of https://github.com/iotbzh/afb-daemon
Diffstat (limited to 'plugins/samples/HelloWorld.c')
-rw-r--r-- | plugins/samples/HelloWorld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 78a1eafd..fe117846 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -54,8 +54,8 @@ static void pingBug (struct afb_req request) static void pingEvent(struct afb_req request) { json_object *query = afb_req_json(request); - afb_event_sender_push(afb_daemon_get_event_sender(interface->daemon), "event", query); - ping(request, json_object_get(query), "event"); + afb_daemon_broadcast_event(interface->daemon, "event", json_object_get(query)); + ping(request, query, "event"); } |