有谁知道如何将 Linphone-iPhone(iOS 版本)的 SIP 端口更改为默认值(5060)以外的值?
问问题
4198 次
3 回答
3
以下链接可能对您有所帮助:-
1 ) http://www.linphone.org/docs/liblinphone/group_linphone_address.html#gaae9f86270cefa9614026a743d4dd29f3 _
2) https://lists.gnu.org/archive/html/linphone-developers/2014-01/msg00033.html
于 2014-02-01T10:45:17.673 回答
0
可能为时已晚,但也许这会有所帮助:
LCSipTransports transport;
linphone_core_get_sip_transports(linphoneCore, &transport);
transport.tls_port = 5061;
linphone_core_set_sip_transports(linphoneCore, &transport);
这段代码可以放在createCore
创建 linphoneCore 的方法中。
于 2016-04-02T21:31:36.843 回答