From 644fad74770594c10b1819900d6195855068020a Mon Sep 17 00:00:00 2001 From: Moises Silva Date: Thu, 13 Oct 2016 03:06:56 -0400 Subject: [PATCH] chan_rtp: Set a sane default rtp engine for unicast. ASTERISK-26439 Change-Id: I7f5ee2eeba8906e9ecb3293dbe3a747770bb5011 --- channels/chan_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_rtp.c b/channels/chan_rtp.c index 0fe66bd209..f1f4f05b93 100644 --- a/channels/chan_rtp.c +++ b/channels/chan_rtp.c @@ -314,7 +314,7 @@ static struct ast_channel *unicast_rtp_request(const char *type, struct ast_form } engine_name = S_COR(ast_test_flag(&opts, OPT_RTP_ENGINE), - opt_args[OPT_ARG_RTP_ENGINE], NULL); + opt_args[OPT_ARG_RTP_ENGINE], "asterisk"); ast_ouraddrfor(&address, &local_address); instance = ast_rtp_instance_new(engine_name, NULL, &local_address, NULL);