From dde70b62b09f49ad672c104a3f81714bf11047be Mon Sep 17 00:00:00 2001 From: José Bollo Date: Fri, 1 Apr 2016 17:00:47 +0200 Subject: work in progress (tbf) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I01f72892530bb4ef14a7216a112812026a367bfa Signed-off-by: José Bollo --- plugins/samples/HelloWorld.c | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'plugins/samples/HelloWorld.c') diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 85e92f45..01275aa3 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -15,6 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +#define _GNU_SOURCE #include #include @@ -22,9 +23,8 @@ #include "local-def.h" #include "afb-req-itf.h" -static json_object* pingSample (AFB_request *request) { +static json_object* ping (AFB_request *request, json_object *jresp) { static int pingcount = 0; - json_object *response; char query [512]; size_t len; @@ -34,14 +34,18 @@ static json_object* pingSample (AFB_request *request) { // return response to caller // response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s}", pingcount++, query); - afb_req_success_f(*request->areq, NULL, "Ping Binder Daemon %d query={%s}", pingcount++, query); + afb_req_success_f(*request->areq, jresp, "Ping Binder Daemon %d query={%s}", pingcount++, query); if (verbose) fprintf(stderr, "%d: \n", pingcount); - return NULL; //(response); + return jresp; +} + +static json_object* pingSample (AFB_request *request) { + return ping(request, json_object_new_string ("Some String")); } static json_object* pingFail (AFB_request *request) { - return NULL; + return ping(request, NULL); } static json_object* pingBug (AFB_request *request) { @@ -70,8 +74,8 @@ static json_object* pingJson (AFB_request *request) { json_object_object_add(embed, "subObjInt", json_object_new_int (5678)); json_object_object_add(jresp,"eobj", embed); - - return jresp; + + return ping(request, jresp); } // NOTE: this sample does not use session to keep test a basic as possible -- cgit 1.2.3-korg