X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-ws.c;h=4b870d456af845be828ef57f97d8a248071e0935;hb=5d248158cc380d0a164fa56b46a7bdede4115407;hp=6995b2fa6fcd71a185abae0eec92c711a45bdb54;hpb=b529ded85a3e50a1aa6529e870b2e2f43e377ca2;p=src%2Fapp-framework-binder.git 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;