[asterisk-addons-commits] mnicholson: trunk r873 - /trunk/channels/chan_mobile.c
SVN commits to the Asterisk addons project
asterisk-addons-commits at lists.digium.com
Tue Apr 14 17:18:50 CDT 2009
Author: mnicholson
Date: Tue Apr 14 17:18:46 2009
New Revision: 873
URL: http://svn.digium.com/svn-view/asterisk-addons?view=rev&rev=873
Log:
Classify incoming +CMGR messages
(closes issue #14901)
Reported by: jongerenchaos
Modified:
trunk/channels/chan_mobile.c
Modified: trunk/channels/chan_mobile.c
URL: http://svn.digium.com/svn-view/asterisk-addons/trunk/channels/chan_mobile.c?view=diff&rev=873&r1=872&r2=873
==============================================================================
--- trunk/channels/chan_mobile.c (original)
+++ trunk/channels/chan_mobile.c Tue Apr 14 17:18:46 2009
@@ -1832,6 +1832,8 @@
return AT_CIND;
} else if (at_match_prefix(buf, "+CLIP:")) {
return AT_CLIP;
+ } else if (at_match_prefix(buf, "+CMGR:")) {
+ return AT_CMGR;
} else if (at_match_prefix(buf, "+VGM:")) {
return AT_VGM;
} else if (at_match_prefix(buf, "+VGS:")) {
More information about the asterisk-addons-commits
mailing list