X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-autoset.c;h=fcb353affc85e63ad0f5535048dc1cc1624c7658;hb=f3d1f19ae308cc0559728c0ccf6281cbce5ee37c;hp=b8f8a2efb463bba94b128d9d06f80fbb76be88f5;hpb=525e9eaa644ca92fad23adfbb7c3119ae8b57a30;p=src%2Fapp-framework-binder.git diff --git a/src/afb-autoset.c b/src/afb-autoset.c index b8f8a2ef..fcb353af 100644 --- a/src/afb-autoset.c +++ b/src/afb-autoset.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016, 2017, 2018 "IoT.bzh" + * Copyright (C) 2016-2019 "IoT.bzh" * Author José Bollo * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -19,6 +19,8 @@ #include #include +#include +#include #include #include #include @@ -92,6 +94,7 @@ int afb_autoset_add_ws(const char *path, struct afb_apiset *declare_set, struct /*******************************************************************/ +#if WITH_DYNAMIC_BINDING static int create_so(const char *path, struct afb_apiset *declare_set, struct afb_apiset *call_set) { return afb_api_so_add_binding(path, declare_set, call_set) >= 0; @@ -106,6 +109,7 @@ int afb_autoset_add_so(const char *path, struct afb_apiset *declare_set, struct { return add(path, declare_set, call_set, onlack_so); } +#endif /*******************************************************************/ @@ -113,15 +117,19 @@ static int create_any(const char *path, struct afb_apiset *declare_set, struct a { int rc; struct stat st; + char sockname[PATH_MAX + 7]; rc = stat(path, &st); if (!rc) { switch(st.st_mode & S_IFMT) { +#if WITH_DYNAMIC_BINDING case S_IFREG: rc = afb_api_so_add_binding(path, declare_set, call_set); break; +#endif case S_IFSOCK: - rc = afb_api_ws_add_client(path, declare_set, call_set, 0); + snprintf(sockname, sizeof sockname, "unix:%s", path); + rc = afb_api_ws_add_client(sockname, declare_set, call_set, 0); break; default: NOTICE("Unexpected autoset entry: %s", path);