问题
I have two application, that uses pjsua. But I can not run both at the same time on a single android device. After running second application it crashes with exception:
java.lang.Exception: Title: pjsua_transport_create(type, &tcfg, &tid) 06-26 14:49:56.355 Code: 120098 06-26 14:49:56.355 Description: Address already in use 06-26 14:49:56.355 Location:
../src/pjsua2/endpoint.cpp:1519 06-26 14:49:56.355 14:49:56.361
pjsua_core.c PJSUA state changed: INIT --> STARTING 06-26 14:49:56.355 14:49:56.362 sip_endpoint.c .Module "mod-unsolicited-mwi" registered 06-26 14:49:56.360 28512-28512/com.lemondo.biz.intelphone I/System.out﹕ 14:49:56.363
pjsua_core.c .PJSUA state changed: STARTING --> RUNNING 06-26 14:49:56.365 A/libc﹕ ../src/pjsua-lib/pjsua_acc.c:404: pjsua_acc_add: assertion "pjsua_var.tpdata[0].data.ptr != ((void *)0)" failed
Do you know how I can solve this problem?
回答1:
Set unique local ports (might be also described as bind ports in configuration) for these applications. For plain pjsua this is --local-port parameter.
回答2:
just set sipTpConfig.setPort(0); Set to 0, the system will automatically give a free port
来源:https://stackoverflow.com/questions/31071514/two-pjsua-application-at-the-same-time-on-android