[Asterisk-cvs] asterisk/apps app_math.c, 1.5,
1.6 app_parkandannounce.c, 1.12, 1.13 app_sendtext.c, 1.4,
1.5 app_voicemail.c, 1.202, 1.203
markster at lists.digium.com
markster at lists.digium.com
Fri Mar 4 00:50:13 CST 2005
- Previous message: [Asterisk-cvs] asterisk .cleancount, 1.3, 1.4 autoservice.c, 1.8,
1.9 channel.c, 1.174, 1.175 cli.c, 1.73, 1.74 dsp.c, 1.37,
1.38 image.c, 1.10, 1.11 pbx.c, 1.209, 1.210 rtp.c, 1.111,
1.112 translate.c, 1.31, 1.32
- Next message: [Asterisk-cvs]
asterisk/include/asterisk channel.h, 1.75, 1.76 rtp.h,
1.19, 1.20 vmodem.h, 1.16, 1.17 channel_pvt.h, 1.16, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv17369/apps
Modified Files:
app_math.c app_parkandannounce.c app_sendtext.c
app_voicemail.c
Log Message:
Rework channel structure to eliminate "pvt" portion of channel (bug #3573)
Index: app_math.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_math.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- app_math.c 16 Feb 2005 01:05:08 -0000 1.5
+++ app_math.c 4 Mar 2005 06:47:23 -0000 1.6
@@ -13,7 +13,6 @@
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <asterisk/channel_pvt.h>
#include <asterisk/pbx.h>
#include <asterisk/options.h>
#include <asterisk/config.h>
Index: app_parkandannounce.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_parkandannounce.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- app_parkandannounce.c 16 Feb 2005 02:58:17 -0000 1.12
+++ app_parkandannounce.c 4 Mar 2005 06:47:23 -0000 1.13
@@ -18,7 +18,6 @@
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <asterisk/channel_pvt.h>
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/features.h>
Index: app_sendtext.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_sendtext.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- app_sendtext.c 21 Jan 2005 07:06:24 -0000 1.4
+++ app_sendtext.c 4 Mar 2005 06:47:23 -0000 1.5
@@ -15,7 +15,6 @@
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <asterisk/channel_pvt.h>
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/translate.h>
@@ -51,7 +50,7 @@
}
LOCAL_USER_ADD(u);
ast_mutex_lock(&chan->lock);
- if (!chan->pvt->send_text) {
+ if (!chan->tech->send_text) {
ast_mutex_unlock(&chan->lock);
/* Does not support transport */
if (ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->cid.cid_num))
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -d -r1.202 -r1.203
--- app_voicemail.c 1 Mar 2005 04:50:52 -0000 1.202
+++ app_voicemail.c 4 Mar 2005 06:47:23 -0000 1.203
@@ -18,7 +18,6 @@
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <asterisk/channel_pvt.h>
#include <asterisk/pbx.h>
#include <asterisk/options.h>
#include <asterisk/config.h>
- Previous message: [Asterisk-cvs] asterisk .cleancount, 1.3, 1.4 autoservice.c, 1.8,
1.9 channel.c, 1.174, 1.175 cli.c, 1.73, 1.74 dsp.c, 1.37,
1.38 image.c, 1.10, 1.11 pbx.c, 1.209, 1.210 rtp.c, 1.111,
1.112 translate.c, 1.31, 1.32
- Next message: [Asterisk-cvs]
asterisk/include/asterisk channel.h, 1.75, 1.76 rtp.h,
1.19, 1.20 vmodem.h, 1.16, 1.17 channel_pvt.h, 1.16, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list