aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormatteo <matteo@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-15 06:00:16 +0000
committermatteo <matteo@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-15 06:00:16 +0000
commit30610b61ae18888f54ae12b9cef4a95917e969e6 (patch)
tree5852502480f57f1aa5563287316be8a59e437af3 /rtp.c
parent24c1f82b133befef1fd6008db6126baff33cd158 (diff)
Sat Mar 15 07:00:01 CET 2003
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@645 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index c3cd30171..faa39c741 100755
--- a/rtp.c
+++ b/rtp.c
@@ -963,8 +963,17 @@ int ast_rtp_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, st
}
/* That's all we needed */
return 0;
- } else
+ } else {
+ if ((f->frametype == AST_FRAME_DTMF) || (f->frametype == AST_FRAME_VOICE)) {
+ /* Forward voice or DTMF frames if they happen upon us */
+ if (who == c0) {
+ ast_write(c1, f);
+ } else if (who == c1) {
+ ast_write(c0, f);
+ }
+ }
ast_frfree(f);
+ }
/* Swap priority not that it's a big deal at this point */
cs[2] = cs[0];
cs[0] = cs[1];