diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-05-23 21:14:08 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:51:00 +0200 |
commit | e21766d185885a985ddf5b2f312171b3f81eb94e (patch) | |
tree | 213927a632f136680516ebd6bd81a43b7ae859d3 /4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | |
parent | d43607bd8665d5710e5258cf237c1f79ec94b7d9 (diff) |
Add a 'List' verb to each hal controller api
Add a 'List' verb to each hal controller api which will list verbs
available for this api.
The callback of the verb is not implemented yet.
Change-Id: Ibc44ef8673267b0b952b32fb256214452aa3c000
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to '4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c index 834d717..8bac074 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c @@ -30,6 +30,7 @@ #include "../4a-hal-manager/4a-hal-manager-cb.h" #include "4a-hal-controllers-api-loader.h" +#include "4a-hal-controllers-cb.h" // Default api to print log when apihandle not available afb_dynapi *AFB_default; @@ -57,6 +58,7 @@ static struct HalUtlApiVerb CtlHalDynApiStaticVerbs[] = { /* VERB'S NAME FUNCTION TO CALL SHORT DESCRIPTION */ { .verb = "ping", .callback = HalMgrPing, .info = "Ping test for DynApi"}, + { .verb = "list", .callback = HalCtlsListVerbs, .info = "List available verbs for this api"}, { .verb = NULL } // Marker for end of the array }; |