summaryrefslogtreecommitdiff
path: root/main/config_options.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-06-13 13:15:56 +0000
committerKinsey Moore <kmoore@digium.com>2013-06-13 13:15:56 +0000
commit4f84e48028b8f21babd26b7f0b8c1d375f1c356c (patch)
tree584e569f685ea7ed662d696793b7442ab8496e47 /main/config_options.c
parent65c492e851639897d8db79741bdcebc3557ad29d (diff)
Refactor CEL channel events on top of Stasis-Core
This uses the channel state change events from Stasis-Core to determine when channel-related CEL events should be raised. Those refactored in this patch are: * AST_CEL_CHANNEL_START * AST_CEL_ANSWER * AST_CEL_APP_START * AST_CEL_APP_END * AST_CEL_HANGUP * AST_CEL_CHANNEL_END Retirement of Linked IDs is also refactored. CEL configuration has been refactored to use the config framework. Note: Some HANGUP events are not generated correctly because the bridge layer does not propagate hangupcause/hangupsource information yet. Review: https://reviewboard.asterisk.org/r/2544/ (closes issue ASTERISK-21563) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@391622 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/config_options.c')
-rw-r--r--main/config_options.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/main/config_options.c b/main/config_options.c
index 39a3fbe61..3c2a41204 100644
--- a/main/config_options.c
+++ b/main/config_options.c
@@ -435,12 +435,23 @@ static int process_category(struct ast_config *cfg, struct aco_info *info, struc
* We do not grab a reference to these objects, as the info already holds references to them. This
* pointer is just a convenience. Do not actually store it somewhere. */
void **field;
+ regex_t *regex_skip;
/* Skip preloaded categories if we aren't preloading */
if (!preload && is_preload(file, cat)) {
return 0;
}
+ /* Skip the category if we've been told to ignore it */
+ if (!ast_strlen_zero(file->skip_category)) {
+ regex_skip = build_regex(file->skip_category);
+ if (!regexec(regex_skip, cat, 0, NULL, 0)) {
+ ast_free(regex_skip);
+ return 0;
+ }
+ ast_free(regex_skip);
+ }
+
/* Find aco_type by category, if not found it is an error */
if (!(type = internal_aco_type_find(file, cfg, cat))) {
ast_log(LOG_ERROR, "Could not find config type for category '%s' in '%s'\n", cat, file->filename);