summaryrefslogtreecommitdiff
path: root/main/pbx_private.h
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2016-07-15 03:59:48 -0400
committerCorey Farrell <git@cfware.com>2016-07-18 03:21:43 -0400
commite2e8713b8405cee26ed40be092bf1320ed9b29db (patch)
tree480d601c66ebf7bacb20acca4d6cd23f4d8d6336 /main/pbx_private.h
parentbe36bd7ca565531c09ca444e59b6d057131a9ab0 (diff)
pbx: Create pbx_ignorepat.c for management of 'struct ast_ignorepat'.
This changes context ignore patterns from a linked list to a vector, makes 'struct ast_ignorepat' opaque to pbx.c. Although ast_walk_context_ignorepats is maintained the procedure is no longer efficient except for the first call (inc==NULL). This functionality is replaced by two new functions implemented by vector macros. * ast_context_ignorepats_count (AST_VECTOR_SIZE) * ast_context_ignorepats_get (AST_VECTOR_GET) As with ast_walk_context_ignorepats callers of these functions are expected to have locked contexts. Only a few places in Asterisk walked the ignorepats, they have been converted to use the new functions. Change-Id: I78f2157d275ef1b7d624b4ff7d770d38e5d7f20a
Diffstat (limited to 'main/pbx_private.h')
-rw-r--r--main/pbx_private.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/pbx_private.h b/main/pbx_private.h
index 22d454ad0..2b7d9828b 100644
--- a/main/pbx_private.h
+++ b/main/pbx_private.h
@@ -31,6 +31,13 @@ void set_ext_pri(struct ast_channel *c, const char *exten, int pri);
/*! pbx.c function needed by pbx_app.c */
void unreference_cached_app(struct ast_app *app);
+/*! pbx_ignorepat.c */
+struct ast_ignorepat;
+AST_VECTOR(ast_ignorepats, struct ast_ignorepat *);
+
+struct ast_ignorepat *ignorepat_alloc(const char *value, const char *registrar);
+void ignorepat_free(struct ast_ignorepat *ip);
+
/*! pbx_includes.c */
struct ast_include;
AST_VECTOR(ast_includes, struct ast_include *);