sip profile 配置 liberal-dtmf 为 true,或者通道变量 rtp_liberal_dtmf 设置为 true,其含义就是不挑剔协商的 dtmf,offer rfc2833 并接受远端的 rfc2833 和 sip info。offer rfc2833的意思就是按 2833 发到远端。
sofia.c 的部分内容为:
void sofia_handle_sip_i_info(...)
{
//...
if (tech_pvt->mparams.dtmf_type == DTMF_INFO ||
sofia_test_pflag(tech_pvt->profile, PFLAG_LIBERAL_DTMF) || switch_channel_test_flag(tech_pvt->channel, CF_LIBERAL_DTMF)) {
/* queue it up */
switch_channel_queue_dtmf(channel, &dtmf);
//...
}
这是收到 sip info 时的处理,如果 sip profile dtmf-type 设置为 sip info,或者 sip profile 设置了 liberal-dtmf=true,或者通道变量设置了 rtp_liberal_dtmf,那么就加到通道的 dtmf 队列里面。
此外,可以在 switch_core_media.c 里面找 CF_LIBERAL_DTMF,能看到相关处理。
liberal 的意思就是自由不受拘束的意思,等于是说不受 sip 协商的约束,远端发过来 sip info,认了,远端发过来 rfc2833,认了,都认了。
FreeSWITCH dtmf 方面的知识很多,以后有机会再讲讲。