mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Let ExtensionState resolve dynamic hints.
(closes issue #16623) Reported by: tilghman Patches: 20100116__issue16623.diff.txt uploaded by tilghman (license 14) Tested by: lmadsen git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@264779 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
11
main/pbx.c
11
main/pbx.c
@@ -4195,6 +4195,17 @@ int ast_extension_state(struct ast_channel *c, const char *context, const char *
|
||||
return -1; /* No hint, return -1 */
|
||||
}
|
||||
|
||||
if (e->exten[0] == '_') {
|
||||
/* Create this hint on-the-fly */
|
||||
ast_add_extension(e->parent->name, 0, exten, e->priority, e->label,
|
||||
e->matchcid ? e->cidmatch : NULL, e->app, ast_strdup(e->data), ast_free_ptr,
|
||||
e->registrar);
|
||||
if (!(e = ast_hint_extension(c, context, exten))) {
|
||||
/* Improbable, but not impossible */
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return ast_extension_state2(e); /* Check all devices in the hint */
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user