[Asterisk-cvs] asterisk Makefile, 1.144, 1.145 UPGRADE.txt, 1.5,
1.6 channel.c, 1.179, 1.180 tdd.c, 1.2, 1.3
markster at lists.digium.com
markster at lists.digium.com
Mon Mar 28 14:54:36 CST 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv4791
Modified Files:
Makefile UPGRADE.txt channel.c tdd.c
Log Message:
Fix a bunch of const stuff, merge queue changes, add experimental "hybrid" DTMF mode
Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/Makefile,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -d -r1.144 -r1.145
--- Makefile 27 Mar 2005 22:39:51 -0000 1.144
+++ Makefile 28 Mar 2005 20:48:24 -0000 1.145
@@ -476,6 +476,7 @@
rm -f $(DESTDIR)$(ASTVARLIBDIR)/sounds/voicemail
mkdir -p $(DESTDIR)$(ASTVARLIBDIR)/sounds
mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
+ mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
mkdir -p $(DESTDIR)$(ASTVARLIBDIR)/keys
mkdir -p $(DESTDIR)$(ASTVARLIBDIR)/firmware
mkdir -p $(DESTDIR)$(ASTVARLIBDIR)/firmware/iax
Index: UPGRADE.txt
===================================================================
RCS file: /usr/cvsroot/asterisk/UPGRADE.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- UPGRADE.txt 27 Mar 2005 07:19:11 -0000 1.5
+++ UPGRADE.txt 28 Mar 2005 20:48:24 -0000 1.6
@@ -26,3 +26,10 @@
* The CallerPres application has been removed. Use SetCallerPres
instead. It accepts both numeric and symbolic names.
+
+Queues:
+
+* A queue is now considered empty not only if there are no members but if
+ none of the members are available (e.g. agents not logged on). To
+ restore the original behavior, use "leavewhenempty=strict" or
+ "joinwhenempty=strict" instead of "=yes" for those options.
Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -d -r1.179 -r1.180
--- channel.c 27 Mar 2005 21:58:10 -0000 1.179
+++ channel.c 28 Mar 2005 20:48:24 -0000 1.180
@@ -2219,14 +2219,14 @@
return 0;
}
-int ast_channel_sendhtml(struct ast_channel *chan, int subclass, char *data, int datalen)
+int ast_channel_sendhtml(struct ast_channel *chan, int subclass, const char *data, int datalen)
{
if (chan->tech->send_html)
return chan->tech->send_html(chan, subclass, data, datalen);
return -1;
}
-int ast_channel_sendurl(struct ast_channel *chan, char *url)
+int ast_channel_sendurl(struct ast_channel *chan, const char *url)
{
if (chan->tech->send_html)
return chan->tech->send_html(chan, AST_HTML_URL, url, strlen(url) + 1);
Index: tdd.c
===================================================================
RCS file: /usr/cvsroot/asterisk/tdd.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- tdd.c 23 Oct 2004 06:28:19 -0000 1.2
+++ tdd.c 28 Mar 2005 20:48:24 -0000 1.3
@@ -233,7 +233,7 @@
PUT_TDD_STOP; /* Stop bit */ \
} while(0);
-int tdd_generate(struct tdd_state *tdd, unsigned char *buf, char *str)
+int tdd_generate(struct tdd_state *tdd, unsigned char *buf, const char *str)
{
int bytes=0;
int i,x;
More information about the svn-commits
mailing list