X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=plugins%2Fsamples%2FHelloWorld.c;h=01275aa35778cf165e32a03c4075d7d987206f8e;hb=dde70b62b09f49ad672c104a3f81714bf11047be;hp=85e92f45e72364a95af969ba2719d26b57275e5c;hpb=bbe18a624f4961165cf52d7f4c25de6f3a7ec012;p=src%2Fapp-framework-binder.git 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