mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
aco: Minimize use of regex.
Remove nearly all use of regex from ACO users. Still remaining: * app_confbridge has a legitamate use of option name regex. * ast_sorcery_object_fields_register is implemented with regex, all callers use simple prefix based regex. I haven't decided the best way to fix this in both 13/15 and master. Change-Id: Ib5ed478218d8a661ace4d2eaaea98b59a897974b
This commit is contained in:
@@ -82,8 +82,8 @@ static void *named_acl_find(struct ao2_container *container, const char *cat);
|
||||
static struct aco_type named_acl_type = {
|
||||
.type = ACO_ITEM, /*!< named_acls are items stored in containers, not individual global objects */
|
||||
.name = "named_acl",
|
||||
.category_match = ACO_BLACKLIST,
|
||||
.category = "^general$", /*!< Match everything but "general" */
|
||||
.category_match = ACO_BLACKLIST_EXACT,
|
||||
.category = "general", /*!< Match everything but "general" */
|
||||
.item_alloc = named_acl_alloc, /*!< A callback to allocate a new named_acl based on category */
|
||||
.item_find = named_acl_find, /*!< A callback to find a named_acl in some container of named_acls */
|
||||
.item_offset = offsetof(struct named_acl_config, named_acl_list), /*!< Could leave this out since 0 */
|
||||
|
||||
Reference in New Issue
Block a user