[Home]

Summary:ASTERISK-11956: no call indication for modern SE phones
Reporter:Dimka koder (shkoder)Labels:
Date Opened:2008-05-01 22:54:34Date Closed:2008-05-02 12:47:32
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Addons/chan_mobile
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:some modern Sony Ericsson phones have CIEV_CALLSETUP=10 (indicating as

[+CIEV: 10,0]

that means following lines

char ciev_callsetup_0[4];
char ciev_callsetup_1[4];
char ciev_callsetup_2[4];
char ciev_callsetup_3[4];

have to be changed to

char ciev_callsetup_0[5];
char ciev_callsetup_1[5];
char ciev_callsetup_2[5];
char ciev_callsetup_3[5];

previous two lines better be changed to prevent future problems

****** ADDITIONAL INFORMATION ******

fix suitable for any trunk
Comments:By: Digium Subversion (svnbot) 2008-05-02 12:43:35

Repository: asterisk-addons
Revision: 583

U   trunk/channels/chan_mobile.c

------------------------------------------------------------------------
r583 | qwell | 2008-05-02 12:43:35 -0500 (Fri, 02 May 2008) | 6 lines

Expand ciev_call (and ciev_callsetup) buffers to allow for longer responses in +CIEV.
Also switch a bunch of (all of) sprintf calls to snprintf.

(closes issue ASTERISK-11956)
Reported by: Shkoder

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk-addons?view=rev&revision=583

By: Digium Subversion (svnbot) 2008-05-02 12:47:32

Repository: asterisk-addons
Revision: 584

_U  branches/1.6.0/
U   branches/1.6.0/channels/chan_mobile.c

------------------------------------------------------------------------
r584 | qwell | 2008-05-02 12:47:30 -0500 (Fri, 02 May 2008) | 14 lines

Merged revisions 583 via svnmerge from
https://origsvn.digium.com/svn/asterisk-addons/trunk

........
r583 | qwell | 2008-05-02 12:49:14 -0500 (Fri, 02 May 2008) | 6 lines

Expand ciev_call (and ciev_callsetup) buffers to allow for longer responses in +CIEV.
Also switch a bunch of (all of) sprintf calls to snprintf.

(closes issue ASTERISK-11956)
Reported by: Shkoder

........

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk-addons?view=rev&revision=584