summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorBen Ford <bford@digium.com>2017-09-05 09:35:12 -0500
committerBenjamin Keith Ford <bford@digium.com>2017-09-05 17:20:39 -0500
commitb7d4a2e32e33e84a5a7c5ecdeaff7b805d153857 (patch)
tree19376af9ae7cd82db527bf3dacdf020d41e2d5b5 /channels
parent9d79c39be28f11e598f19221c7af136c0023c629 (diff)
chan_pjsip: Suppress frame warnings.
When rtp_keepalive is on for a PJSIP endpoint dialing to another Asterisk instance also using PJSIP, Asterisk will continue to print warning messages about not being able to send frames of a certain type. This suppresses that warning message. Change-Id: I0332a05519d7bda9cacfa26d433909ff1909be67
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_pjsip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_pjsip.c b/channels/chan_pjsip.c
index 677dfd3dd..841654c92 100644
--- a/channels/chan_pjsip.c
+++ b/channels/chan_pjsip.c
@@ -941,6 +941,8 @@ static int chan_pjsip_write_stream(struct ast_channel *ast, int stream_num, stru
res = media->write_callback(session, media, frame);
}
break;
+ case AST_FRAME_CNG:
+ break;
default:
ast_log(LOG_WARNING, "Can't send %u type frames with PJSIP\n", frame->frametype);
break;