From: Moises Silva Date: Thu, 13 Oct 2016 07:06:56 +0000 (-0400) Subject: chan_rtp: Set a sane default rtp engine for unicast. X-Git-Tag: 13.13.0-rc1~83^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fchanges%2F82%2F4082%2F2;p=thirdparty%2Fasterisk.git chan_rtp: Set a sane default rtp engine for unicast. ASTERISK-26439 Change-Id: I7f5ee2eeba8906e9ecb3293dbe3a747770bb5011 --- 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);