Remove tailing spaces and TODO file
[src/app-framework-binder.git] / src / afb-api-ws.c
index dba8d05..7e0adb7 100644 (file)
@@ -169,7 +169,6 @@ static int api_ws_socket_inet(const char *path, int server)
        }
        freeaddrinfo(rai);
        return -1;
-       
 }
 
 static int api_ws_socket(const char *path, int server)
@@ -226,9 +225,14 @@ int afb_api_ws_add_client(const char *path, struct afb_apiset *apiset)
                ERROR("can't setup client ws service to %s", apiws->path);
                goto error3;
        }
+       if (afb_stub_ws_client_add(stubws, apiset) < 0) {
+               ERROR("can't add the client to the apiset for service %s", apiws->path);
+               goto error4;
+       }
        free(apiws);
        return 0;
-
+error4:
+       afb_stub_ws_unref(stubws);
 error3:
        close(apiws->fd);
 error2:
@@ -319,6 +323,12 @@ int afb_api_ws_add_server(const char *path, struct afb_apiset *apiset)
        if (apiws == NULL)
                goto error;
 
+       /* check api name */
+       if (!afb_apiset_lookup(apiset, apiws->api, 1)) {
+               ERROR("Can't provide ws-server for %s: API %s doesn't exist", path, apiws->api);
+               goto error2;
+       }
+
        /* connect for serving */
        rc = api_ws_server_connect(apiws);
        if (rc < 0)