[asterisk-bugs] [Asterisk 0015684]: [patch] different 'ringt' timeout counting styles througout chan_dahdi/sig_analog code
Asterisk Bug Tracker
noreply at bugs.digium.com
Sun Aug 9 05:58:44 CDT 2009
The following issue has been UPDATED.
======================================================================
https://issues.asterisk.org/view.php?id=15684
======================================================================
Reported By: alecdavis
Assigned To:
======================================================================
Project: Asterisk
Issue ID: 15684
Category: Channels/chan_dahdi
Reproducibility: N/A
Severity: text
Priority: normal
Status: new
Asterisk Version: SVN
Regression: No
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!): 211232
Request Review:
======================================================================
Date Submitted: 2009-08-09 05:29 CDT
Last Modified: 2009-08-09 05:58 CDT
======================================================================
Summary: [patch] different 'ringt' timeout counting styles
througout chan_dahdi/sig_analog code
Description:
Below are the three styles I've found.
All trying to achive very close to the same thing, to timeout 'ringt'.
<pre>
<u>Style 1:</u>
if (analog_p->ringt) {
analog_p->ringt--;
}
if (analog_p->ringt == 1) {
return -1;
}
<u>Style 2:</u>
if (p->ringt)
p->ringt--;
if (p->ringt == 1) {
res = -1;
break;
}
}
<u>Style 3:</u>
if (p->ringt == 1) {
ast_mutex_unlock(&p->lock);
return NULL;
}
else if (p->ringt > 0)
p->ringt--;
</pre>
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
2009-08-09 05:58 alecdavis Summary different 'ringt'
timeout counting styles througout chan_dahdi/sig_analog code => [patch]
different 'ringt' timeout counting styles througout chan_dahdi/sig_analog code
======================================================================
More information about the asterisk-bugs
mailing list