aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-api.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-01-31 14:52:08 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2018-01-31 14:57:21 +0100
commit3535d4cb73628c720da1bf74627ded2aec6f2ca1 (patch)
tree2d73036739d0bbc9877131548b156640c9676fb5 /src/afb-api.c
parent379b11154f301a30e79154c0af1ef1f257149efa (diff)
afb-api: Enforce api names to be hookable
Change-Id: Ic1d5cb208c636d3261e1a96c4a81b488cb84a60e Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-api.c')
-rw-r--r--src/afb-api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afb-api.c b/src/afb-api.c
index 38ec4f25..7c4598d2 100644
--- a/src/afb-api.c
+++ b/src/afb-api.c
@@ -29,7 +29,7 @@
* Checks wether 'name' is a valid API name.
* @return 1 if valid, 0 otherwise
*/
-int afb_api_is_valid_name(const char *name)
+int afb_api_is_valid_name(const char *name, int hookable)
{
unsigned char c;
@@ -60,6 +60,6 @@ int afb_api_is_valid_name(const char *name)
}
c = (unsigned char)*++name;
} while(c != 0);
- return 1;
+ return !hookable || afb_api_is_hookable(name);
}