From 58a37523dd6074cf2eb0748995397f6ccedf27ca Mon Sep 17 00:00:00 2001 From: Mike Bradeen Date: Tue, 12 Sep 2023 13:24:57 -0600 Subject: [PATCH] func_periodic_hook: Add hangup step to avoid timeout func_periodic_hook does not hangup after playback, relying on hangup which keeps the channel alive longer than necessary. Resolves: #325 (cherry picked from commit dd817c270871eddb356246b33a5653a943c6cab7) --- funcs/func_periodic_hook.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/funcs/func_periodic_hook.c b/funcs/func_periodic_hook.c index eeab0ecc77..87284eab83 100644 --- a/funcs/func_periodic_hook.c +++ b/funcs/func_periodic_hook.c @@ -487,6 +487,8 @@ static int load_module(void) "Answer", "", NULL, AST_MODULE); res |= ast_add_extension(context_name, 1, beep_exten, 2, "", "", "Playback", "beep", NULL, AST_MODULE); + res |= ast_add_extension(context_name, 1, beep_exten, 3, "", "", + "Hangup", "", NULL, AST_MODULE); res |= ast_custom_function_register_escalating(&hook_function, AST_CFE_BOTH);