mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-28 15:11:12 +00:00
Merged revisions 19301 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r19301 | kpfleming | 2006-04-11 15:11:01 -0500 (Tue, 11 Apr 2006) | 2 lines handle call time limit properly when warning is requested _after_ call would hae already ended (issue #6356) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19302 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -841,6 +841,21 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
ast_log(LOG_WARNING, "Dial does not accept L(%s), hanging up.\n", limit_str);
|
ast_log(LOG_WARNING, "Dial does not accept L(%s), hanging up.\n", limit_str);
|
||||||
LOCAL_USER_REMOVE(u);
|
LOCAL_USER_REMOVE(u);
|
||||||
return -1;
|
return -1;
|
||||||
|
} else if (play_warning > timelimit) {
|
||||||
|
/* If the first warning is requested _after_ the entire call would end,
|
||||||
|
and no warning frequency is requested, then turn off the warning. If
|
||||||
|
a warning frequency is requested, reduce the 'first warning' time by
|
||||||
|
that frequency until it falls within the call's total time limit.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!warning_freq) {
|
||||||
|
play_warning = 0;
|
||||||
|
} else {
|
||||||
|
while (play_warning > timelimit)
|
||||||
|
play_warning -= warning_freq;
|
||||||
|
if (play_warning < 1)
|
||||||
|
play_warning = warning_freq = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var = pbx_builtin_getvar_helper(chan,"LIMIT_PLAYAUDIO_CALLER");
|
var = pbx_builtin_getvar_helper(chan,"LIMIT_PLAYAUDIO_CALLER");
|
||||||
|
|||||||
Reference in New Issue
Block a user