From: Anthony Minessale Date: Tue, 28 Apr 2015 21:12:24 +0000 (-0500) Subject: FS-7472 X-Git-Tag: v1.4.19~6^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e588b551b227fc00d562e018fd32b1c34f9c8c3;p=thirdparty%2Ffreeswitch.git FS-7472 --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index ece392334c..c1f7272879 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -167,6 +167,9 @@ void sofia_glue_attach_private(switch_core_session_t *session, sofia_profile_t * tech_pvt->mparams.rtp_timeout_sec = profile->rtp_timeout_sec; tech_pvt->mparams.rtp_hold_timeout_sec = profile->rtp_hold_timeout_sec; + if (profile->rtp_digit_delay) { + tech_pvt->mparams.dtmf_delay = profile->rtp_digit_delay; + } switch_media_handle_create(&tech_pvt->media_handle, session, &tech_pvt->mparams); switch_media_handle_set_media_flags(tech_pvt->media_handle, tech_pvt->profile->media_flags);