[Asterisk-cvs] asterisk/channels chan_zap.c,1.293,1.294
markster at lists.digium.com
markster at lists.digium.com
Thu Jul 15 22:38:54 CDT 2004
Update of /usr/cvsroot/asterisk/channels
In directory localhost.localdomain:/tmp/cvs-serv7803/channels
Modified Files:
chan_zap.c
Log Message:
Fix native zap bridging with GR-303
Index: chan_zap.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_zap.c,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -d -r1.293 -r1.294
--- chan_zap.c 9 Jul 2004 10:46:50 -0000 1.293
+++ chan_zap.c 16 Jul 2004 02:24:57 -0000 1.294
@@ -1143,7 +1143,7 @@
for (x=0;x<MAX_SLAVES;x++) {
if (p->slaves[x]) {
if (useslavenative)
- conf_add(p, &p->slaves[x]->subs[SUB_REAL], SUB_REAL, p->channel);
+ conf_add(p, &p->slaves[x]->subs[SUB_REAL], SUB_REAL, p->bearer ? p->bearer->channel : p->channel);
else {
conf_add(p, &p->slaves[x]->subs[SUB_REAL], SUB_REAL, 0);
needconf++;
@@ -1153,7 +1153,7 @@
/* If we're supposed to be in there, do so now */
if (p->inconference && !p->subs[SUB_REAL].inthreeway) {
if (useslavenative)
- conf_add(p, &p->subs[SUB_REAL], SUB_REAL, slave->channel);
+ conf_add(p, &p->subs[SUB_REAL], SUB_REAL, slave->bearer ? slave->bearer->channel : slave->channel);
else {
conf_add(p, &p->subs[SUB_REAL], SUB_REAL, 0);
needconf++;
@@ -1162,7 +1162,7 @@
/* If we have a master, add ourselves to his conference */
if (p->master) {
if (isslavenative(p->master, NULL)) {
- conf_add(p->master, &p->subs[SUB_REAL], SUB_REAL, p->master->channel);
+ conf_add(p->master, &p->subs[SUB_REAL], SUB_REAL, p->master->bearer ? p->master->bearer->channel : p->master->channel);
} else {
conf_add(p->master, &p->subs[SUB_REAL], SUB_REAL, 0);
}
More information about the svn-commits
mailing list