mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +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:
@@ -289,8 +289,8 @@ static struct aco_type global_option = {
|
||||
.type = ACO_GLOBAL,
|
||||
.name = "globals",
|
||||
.item_offset = offsetof(struct parking_config, global),
|
||||
.category_match = ACO_WHITELIST,
|
||||
.category = "^general$",
|
||||
.category_match = ACO_WHITELIST_EXACT,
|
||||
.category = "general",
|
||||
};
|
||||
|
||||
struct aco_type *global_options[] = ACO_TYPES(&global_option);
|
||||
@@ -298,8 +298,8 @@ struct aco_type *global_options[] = ACO_TYPES(&global_option);
|
||||
static struct aco_type parking_lot_type = {
|
||||
.type = ACO_ITEM,
|
||||
.name = "parking_lot",
|
||||
.category_match = ACO_BLACKLIST,
|
||||
.category = "^(general)$",
|
||||
.category_match = ACO_BLACKLIST_EXACT,
|
||||
.category = "general",
|
||||
.item_alloc = parking_lot_cfg_alloc,
|
||||
.item_find = named_item_find,
|
||||
.item_offset = offsetof(struct parking_config, parking_lots),
|
||||
|
Reference in New Issue
Block a user