From 82e70b21286362ea0890f45c3b9e98c52786aa33 Mon Sep 17 00:00:00 2001 From: Alec L Davis <sivad.a@paradise.net.nz> Date: Fri, 12 Apr 2013 08:50:53 +0000 Subject: [PATCH] IAX2 defer_full_frames fail to get sent Ensure iax2_process_thread is signalled when a deferred frame is queued to it. (issue ASTERISK-18827) Reported by: alecdavis Tested by: alecdavis alecdavis (license 585) Review https://reviewboard.asterisk.org/r/2426/ ........ Merged revisions 385429 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@385430 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_iax2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 538b56ad54..31b15dccf6 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -9685,6 +9685,9 @@ static void defer_full_frame(struct iax2_thread *from_here, struct iax2_thread * if (!cur_pkt_buf) AST_LIST_INSERT_TAIL(&to_here->full_frames, pkt_buf, entry); + to_here->iostate = IAX_IOSTATE_READY; + ast_cond_signal(&to_here->cond); + ast_mutex_unlock(&to_here->lock); } -- GitLab