有人知道如何将Linphone-iPhone(iOS版)的SIP端口更改为默认值(5060)以外的其他端口吗?
答案 0 :(得分:3)
以下链接可能会对您有所帮助: -
2)https://lists.gnu.org/archive/html/linphone-developers/2014-01/msg00033.html
答案 1 :(得分:0)
可能为时已晚,但也许这可能会有所帮助:
LCSipTransports transport;
linphone_core_get_sip_transports(linphoneCore, &transport);
transport.tls_port = 5061;
linphone_core_set_sip_transports(linphoneCore, &transport);
此代码可以放在createCore
方法中,其中创建了linphoneCore。
答案 2 :(得分:0)