aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-api-ws.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-04-10 11:41:21 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-04-10 11:41:21 +0200
commit5d248158cc380d0a164fa56b46a7bdede4115407 (patch)
treedf9df98654af13f291f79dfa0cc073f2d7ae6de4 /src/afb-api-ws.c
parentb529ded85a3e50a1aa6529e870b2e2f43e377ca2 (diff)
Refactor of API interfaces
The new interface has increased functionnality, it allows to set debug flags by API. Change-Id: Ibd35fb02ed645e22cac8e7021b37b96e07e79877 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-api-ws.c')
-rw-r--r--src/afb-api-ws.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c
index 6995b2fa..4b870d45 100644
--- a/src/afb-api-ws.c
+++ b/src/afb-api-ws.c
@@ -856,6 +856,11 @@ static int api_ws_client_connect(struct api_ws *api)
return -1;
}
+static struct afb_api_itf ws_api_itf = {
+ .call = api_ws_client_call_cb,
+ .service_start = api_ws_service_start_cb
+};
+
/* adds a afb-ws-service client api */
int afb_api_ws_add_client(const char *path)
{
@@ -877,9 +882,7 @@ int afb_api_ws_add_client(const char *path)
/* record it as an API */
afb_api.closure = api;
- afb_api.call = api_ws_client_call_cb;
- afb_api.service_start = api_ws_service_start_cb;
- afb_api.update_hooks = NULL;
+ afb_api.itf = &ws_api_itf;
if (afb_apis_add(api->api, afb_api) < 0)
goto error3;