aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/loader.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/main/loader.c b/main/loader.c
index 192cbd894..c0636142a 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -871,6 +871,26 @@ int ast_update_module_list(int (*modentry)(const char *module, const char *descr
return total_mod_loaded;
}
+int ast_module_check(char *name)
+{
+ struct ast_module *cur;
+ int unlock = -1;
+ int res = 0;
+
+ if (ast_strlen_zero(name))
+ return 0; /* FALSE */
+
+ if (ast_mutex_trylock(&module_list.lock))
+ unlock = 0;
+ AST_LIST_TRAVERSE(&module_list, cur, entry)
+ if (!res && !strcasecmp(name, cur->resource))
+ res = 1;
+ if (unlock)
+ AST_LIST_UNLOCK(&module_list);
+ return res;
+}
+
+
int ast_loader_register(int (*v)(void))
{
struct loadupdate *tmp;