mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
When specifying an invalid timeout to Dial, take it
to mean that no timeout is desired. (closes issue #13625) Reported by: atis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@149279 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -145,6 +145,8 @@ Application Changes
|
|||||||
'UNSUPPORTED'. This change makes SendImage() more consistent with other
|
'UNSUPPORTED'. This change makes SendImage() more consistent with other
|
||||||
applications.
|
applications.
|
||||||
* Park has a new option, 's', which silences the announcement of the parking space number.
|
* Park has a new option, 's', which silences the announcement of the parking space number.
|
||||||
|
* A non-numeric, zero, or negative timeout specified to Dial() will now be interpreted as
|
||||||
|
invalid input and will be assumed to mean that no timeout is desired.
|
||||||
|
|
||||||
SIP Changes
|
SIP Changes
|
||||||
-----------
|
-----------
|
||||||
|
@@ -1589,8 +1589,10 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
|
|||||||
to = atoi(args.timeout);
|
to = atoi(args.timeout);
|
||||||
if (to > 0)
|
if (to > 0)
|
||||||
to *= 1000;
|
to *= 1000;
|
||||||
else
|
else {
|
||||||
ast_log(LOG_WARNING, "Invalid timeout specified: '%s'\n", args.timeout);
|
ast_log(LOG_WARNING, "Invalid timeout specified: '%s'. Setting timeout to infinite\n", args.timeout);
|
||||||
|
to = -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!outgoing) {
|
if (!outgoing) {
|
||||||
|
Reference in New Issue
Block a user