X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-ws.c;h=5c3dcd4764a5a9ee23b4e45d3b6a5537f2f15c71;hb=7effe02be236921437fb77d8fbeb21eb62e35939;hp=82671875cb1e32e5ff257f90a387e0a635eb36a4;hpb=c63291ad456fd8584e0fed454baa5f0322beb27e;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c index 82671875..5c3dcd47 100644 --- a/src/afb-api-ws.c +++ b/src/afb-api-ws.c @@ -765,7 +765,7 @@ static void api_ws_client_on_binary(void *closure, char *data, size_t size) } /* on call, propagate it to the ws service */ -static void api_ws_client_xcall_cb(void * closure, struct afb_xreq *xreq) +static void api_ws_client_call_cb(void * closure, struct afb_xreq *xreq) { int rc; struct api_ws_memo *memo; @@ -877,7 +877,7 @@ int afb_api_ws_add_client(const char *path) /* record it as an API */ afb_api.closure = api; - afb_api.xcall = api_ws_client_xcall_cb; + afb_api.call = api_ws_client_call_cb; afb_api.service_start = api_ws_service_start_cb; if (afb_apis_add(api->api, afb_api) < 0) goto error3; @@ -944,7 +944,7 @@ static void api_ws_server_called(struct api_ws_client *client, struct readbuf *r wreq->xreq.verb = verb; wreq->xreq.query = wreq; wreq->xreq.queryitf = &afb_api_ws_xreq_itf; - afb_apis_xcall(&wreq->xreq); + afb_apis_call(&wreq->xreq); afb_xreq_unref(&wreq->xreq); return;