From: Mark Spencer Date: Sat, 9 Apr 2005 18:54:58 +0000 (+0000) Subject: Forward text frames before answer (bug #3717) X-Git-Tag: 1.2.0-beta1~868 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e87a53037e4e13c7c2406c5ec84e95f84aa032ee;p=thirdparty%2Fasterisk.git Forward text frames before answer (bug #3717) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5440 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index 9f7dedbdda..ca62e06a7f 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -513,6 +513,10 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu !(ast_test_flag(outgoing, DIAL_RINGBACKONLY|DIAL_MUSICONHOLD))) { if (ast_write(in, f)) ast_log(LOG_WARNING, "Unable to forward image\n"); + } else if (single && (f->frametype == AST_FRAME_TEXT) && + !(ast_test_flag(outgoing, DIAL_RINGBACKONLY|DIAL_MUSICONHOLD))) { + if (ast_write(in, f)) + ast_log(LOG_WARNING, "Unable to text\n"); } else if (single && (f->frametype == AST_FRAME_HTML) && !ast_test_flag(outgoing, DIAL_NOFORWARDHTML)) ast_channel_sendhtml(in, f->subclass, f->data, f->datalen);