如何让freeswitch转发客户端自定义的INFO消息
英文概述:
this article is about how to configure freeswitch to forward self-defined info message of sip client to another。
问题描述
需要对接第三方的SIP客户端,那个客户端有一套自定义的INFO消息机制。
SipClientA <---> FreeSWITCH <---> SipClientB
如上面的结构所示:A需要将自定义的消息转发给B,那FreeSWITCH需要如何转发?
(默认情况下,FreeSWITCH并不转发该消息)
解决方案
修改文件/usr/local/freeswitch/conf/sip_profiles/internal.xml
修改内容如下:
将extended-info-parsing的值设置为true
<!-- extended info parsing -->
<param name="extended-info-parsing" value="true"/>