[asterisk-bugs] [Asterisk 0013617]: [patch] SMS app ignores parameter 'p' - initial pause
Asterisk Bug Tracker
noreply at bugs.digium.com
Tue Oct 14 13:47:57 CDT 2008
A NOTE has been added to this issue.
======================================================================
http://bugs.digium.com/view.php?id=13617
======================================================================
Reported By: alecdavis
Assigned To: Corydon76
======================================================================
Project: Asterisk
Issue ID: 13617
Category: Applications/app_sms
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Asterisk Version: 1.6.0-rc6
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Disclaimer on File?: N/A
Request Review:
======================================================================
Date Submitted: 2008-10-03 23:41 CDT
Last Modified: 2008-10-14 13:47 CDT
======================================================================
Summary: [patch] SMS app ignores parameter 'p' - initial
pause
Description:
Can be tested without any actual sms equipment.
dialplan code:
exten => 8507,1,NoOp(SMS Test extension)
exten => 8507,n,Answer()
exten => 8507,n,SMS(sms,atp350)
exten => 8507,n,Hangup()
modified app_sms.c -> sms_exec:
h.smsc = ast_test_flag(&sms_flags, OPTION_BE_SMSC);
h.protocol = ast_test_flag(&sms_flags, OPTION_TWO) ? 2 : 1;
if (!ast_strlen_zero(sms_opts[OPTION_ARG_PAUSE])){
h.opause_0 = atoi(sms_opts[OPTION_ARG_PAUSE]);
ast_log(LOG_NOTICE, "Initial Delay [%d]ms override\n",
h.opause_0); /* Debug: this line is never shown!!!!!!! */
}
if (h.opause_0 < 25 || h.opause_0 > 2000){
ast_log(LOG_WARNING, "Initial Delay [%d]ms out of range.
Default 300ms\n", h.opause_0); /* added for DEBUG */
h.opause_0 = 300; /* default 300ms */
}
console output:
-- Executing [8507 at trusted:1] NoOp("IAX2/aldhome-1248", "SMS Test
extension") in new stack
-- Executing [8507 at trusted:2] Answer("IAX2/aldhome-1248", "") in new
stack
-- Executing [8507 at trusted:3] SMS("IAX2/aldhome-1248", "sms,atp350")
in new stack
sms argc 2 queue <sms> opts <atp350> addr <> body <>
[Oct 4 17:47:03] WARNING[16702]: app_sms.c:1806 sms_exec: Initial Delay
[0]ms out of range. Default 300ms
-- SMS TX 7F 00
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
parent of 0013677 [patch] make code conform to trunk form...
related to 0013646 [patch] ignores 'p' parameter, received...
======================================================================
----------------------------------------------------------------------
(0093634) svnbot (reporter) - 2008-10-14 13:47
http://bugs.digium.com/view.php?id=13617#c93634
----------------------------------------------------------------------
Repository: asterisk
Revision: 148985
U trunk/apps/app_sms.c
------------------------------------------------------------------------
r148985 | tilghman | 2008-10-14 13:47:56 -0500 (Tue, 14 Oct 2008) | 6
lines
App is ignoring 'p' parameter -- initial pause.
(closes issue http://bugs.digium.com/view.php?id=13617)
Reported by: alecdavis
Patches:
app_sms.13oct.diff.txt uploaded by alecdavis (license 585)
------------------------------------------------------------------------
http://svn.digium.com/view/asterisk?view=rev&revision=148985
Issue History
Date Modified Username Field Change
======================================================================
2008-10-14 13:47 svnbot Checkin
2008-10-14 13:47 svnbot Note Added: 0093634
======================================================================
More information about the asterisk-bugs
mailing list