Linphone开发中遇到的一些问题
2017-09-27 本文已影响43人
no1ever
1:5060端口
linphone默认的源端口是5060,如果本地的5060端口被占用,就会出现连接服务器不成功。所以一般要设置源端口为随机端口:
LCSipTransportstransportValue = {-1, -1, -1, -1};
// // will also update the sip_*_port section of the config
if(linphone_core_set_sip_transports(LC, &transportValue)) {
NSLog(@"cannot set transport");
}