From 9461aa0027f970bf68bf93e0617cf573e463b084 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 18 Jan 2007 00:18:44 +0000 Subject: [PATCH] Pass data as well for hold/unhold/vidupdate frames. (issue #8840 reported by mdu113) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@51211 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/rtp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/rtp.c b/main/rtp.c index 7cce2b3ad0..9b4431d06f 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -2864,7 +2864,7 @@ static enum ast_bridge_result bridge_native_loop(struct ast_channel *c0, struct if ((fr->subclass == AST_CONTROL_HOLD) || (fr->subclass == AST_CONTROL_UNHOLD) || (fr->subclass == AST_CONTROL_VIDUPDATE)) { - ast_indicate(other, fr->subclass); + ast_indicate_data(other, fr->subclass, fr->data, fr->datalen); ast_frfree(fr); } else { *fo = fr; @@ -3072,7 +3072,7 @@ static enum ast_bridge_result bridge_p2p_loop(struct ast_channel *c0, struct ast p0_callback = p2p_callback_enable(c0, p0, &p0_fds[0], &p0_iod[0]); p1_callback = p2p_callback_enable(c1, p1, &p1_fds[0], &p1_iod[0]); } - ast_indicate(other, fr->subclass); + ast_indicate_data(other, fr->subclass, fr->data, fr->datalen); ast_frfree(fr); } else { *fo = fr;