Hi,
Sorry for long post, but it cannot be shorter.
I have huge problem with deinit endpoint during call. I'm using latest
version of pjsip (2.6) build stack with ndk 11. When I call
Endpoint.delete() or Endpoint.libDestroy() I get crash from lib.
My problem is connected with gc
(http://www.pjsip.org/docs/book-latest/html/intro_pjsua2.html#problems-with-garbage-collection)\
Do you know what kind of objects I need to delete before I want to
deinitialize lib?
I want to do that when I lost connection, when I go out from WiFi or
other user interaction with WiFi.
In these case I get two kinds of error:
1. "conf && port < conf->max_ports" failed (log in attachment)
2. "Calling pjlib from unknown/external thread." (log in attachment)
I also attach full log when I disconnect WiFi during call. As you can
see. I try disconnect audio ports but it doesn't help.
BR, Andrzej
Here is my deinit procedure:
void deInitialize(final SipService sipService)
{
Log.d(this, "deInitialize deleteAudioMedia();");
deleteAudioMedia();
Log.d(this, "deInitialize deleteCall();");
deleteCall(sipService);
Log.d(this, "deInitialize deleteAccount();");
deleteAccount();
try
{
IntVector transportVector = ep.transportEnum();
for (int i = 0; i < transportVector.size(); i++)
{
Log.d(this, "deInitialize transportClose();");
ep.transportClose(i);
}
}
catch (Exception e)
{
Log.e(this, e);
}
Log.d(this, "deInitialize sipTpConfig.delete();");
sipTpConfig.delete();
sipTpConfig = null;
try
{
Thread.sleep(3000);
Log.d(this, "deInitialize ep.libDestroy();");
ep.libDestroy();
}
catch (Exception e)
{
Log.e(this, e);
}
Log.d(this, "deInitialize ep.delete();");
ep.delete();
ep = null;
sipService.notifyStackState(pjsua_state.PJSUA_STATE_NULL);
}
void deleteCall(final SipService sipService)
{
try
{
ep.hangupAllCalls();
if (mSipAccount != null)
{
Stream.of(mSipAccount.getCallIDs()).filter(callId ->
callId != -1).forEach(callId -> {
SipCall call = mSipAccount.getCall(callId);
if (call != null)
{
call.delete();
call = null;
}
sipService.notifyCallDisconnected(callId);
});
}
}
catch (Exception e)
{
Log.d(this, "deleteCall", e);
}
}
void deleteAudioMedia()
{
try
{
AudioMediaVector audioMediaVector = ep.mediaEnumPorts();
for (int i = 0; i < audioMediaVector.size(); i++)
{
Log.d(this, "audioMedia deleted");
AudioMedia audioMedia = audioMediaVector.get(i);
ep.mediaRemove(audioMedia);
audioMedia.delete();
}
Log.d(this, "audDevManager deleted");
ep.audDevManager().delete();
}
catch (Exception e)
{
Log.e(this, "deleteAudioMedia", e);
}
}
void deleteAccount()
{
if (mSipAccount != null)
{
try
{
mSipAccount.delete();
}
catch (final Exception e)
{
Log.e(this, e);
}
}
mSipAccount = null;
}
where
ep - Endpoint
mSipAccount - public class SipAccount extends Account
../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed
libc: Fatal signal 6 (SIGABRT), code -6 in tid 6691 (SipService)
[ 02-07 09:17:47.512 210: 210 W/ ]
debuggerd: handling request: pid=6587 uid=10119 gid=10119 tid=6691
02-07 09:17:47.555 262-305/? W/APM::EffectDescriptor: unregisterEffect() unknown effect ID 283
DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
DEBUG: Build fingerprint: 'google/volantisg/flounder_lte:7.1.1/NMF26F/3425388:user/release-keys'
DEBUG: Revision: '0'
DEBUG: ABI: 'arm64'
DEBUG: pid: 6587, tid: 6691, name: SipService >>> com.android.sipapp <<<
DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
DEBUG: Abort message: '../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed'
DEBUG: x0 0000000000000000 x1 0000000000001a23 x2 0000000000000006 x3 0000000000000008
DEBUG: x4 000000724c9fced8 x5 0000000000800000 x6 0000000000000000 x7 0000000000000030
DEBUG: x8 0000000000000083 x9 ffffffffffffffdf x10 0000000000000000 x11 0000000000000001
DEBUG: x12 ffffffffffffffff x13 0000000000000000 x14 0000000000000000 x15 001e6cc13e7e965a
DEBUG: x16 0000007269a42ec8 x17 00000072699f0294 x18 00000000ffffffff x19 000000724c9ff4f8
DEBUG: x20 0000000000000006 x21 000000724c9ff450 x22 0000000000000000 x23 000000724ea06e96
DEBUG: x24 0000000000000008 x25 0b8429f372ee0c9f x26 000000724dbe4098 x27 0b8429f372ee0c9f
DEBUG: x28 0000000000000002 x29 000000724c9fd110 x30 00000072699ed73c
DEBUG: sp 000000724c9fd0f0 pc 00000072699f029c pstate 0000000060000000
DEBUG: backtrace:
DEBUG: #00 pc 000000000006b29c /system/lib64/libc.so (tgkill+8)
DEBUG: #01 pc 0000000000068738 /system/lib64/libc.so (pthread_kill+64)
DEBUG: #02 pc 0000000000023d2c /system/lib64/libc.so (raise+24)
DEBUG: #03 pc 000000000001c7b0 /system/lib64/libc.so (abort+52)
DEBUG: #04 pc 0000000000020d38 /system/lib64/libc.so (__libc_fatal+104)
DEBUG: #05 pc 000000000001cbc0 /system/lib64/libc.so (__assert2+48)
DEBUG: #06 pc 00000000001fd9bc /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (pjmedia_conf_remove_port+112)
DEBUG: #07 pc 0000000000196c74 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (pjsua_conf_remove_port+36)
DEBUG: #08 pc 000000000015d328 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMedia19unregisterMediaPortEv+36)
DEBUG: #09 pc 000000000015d3a4 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMediaD1Ev+40)
DEBUG: #10 pc 000000000015b06c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD1Ev+36)
DEBUG: #11 pc 000000000015b09c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD0Ev+16)
DEBUG: #12 pc 00000000001402b0 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj8EndpointD1Ev+184)
DEBUG: #13 pc 00000000000c859c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD2Ev+96)
DEBUG: #14 pc 00000000000c8604 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD0Ev+16)
DEBUG: #15 pc 0000000000112a5c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (Java_org_pjsip_pjsua2_pjsua2JNI_delete_1Endpoint+68)
DEBUG: #16 pc 00000000009f2fb4 /data/app/com.android.sipapp-2/oat/arm64/base.odex (offset 0x8d9000)
void deInitialize(final SipService sipService)
{
Log.d(this, "deInitialize deleteAudioMedia();");
deleteAudioMedia();
Log.d(this, "deInitialize deleteCall();");
deleteCall(sipService);
Log.d(this, "deInitialize deleteAccount();");
deleteAccount();
try
{
IntVector transportVector = ep.transportEnum();
for (int i = 0; i < transportVector.size(); i++)
{
Log.d(this, "deInitialize transportClose();");
ep.transportClose(i);
}
}
catch (Exception e)
{
Log.e(this, e);
}
Log.d(this, "deInitialize sipTpConfig.delete();");
sipTpConfig.delete();
sipTpConfig = null;
try
{
Thread.sleep(3000);
Log.d(this, "deInitialize ep.libDestroy();");
ep.libDestroy();
}
catch (Exception e)
{
Log.e(this, e);
}
Log.d(this, "deInitialize ep.delete();");
ep.delete();
ep = null;
sipService.notifyStackState(pjsua_state.PJSUA_STATE_NULL);
}
void deleteCall(final SipService sipService)
{
try
{
ep.hangupAllCalls();
if (mSipAccount != null)
{
Stream.of(mSipAccount.getCallIDs()).filter(callId -> callId != -1).forEach(callId -> {
SipCall call = mSipAccount.getCall(callId);
if (call != null)
{
call.delete();
call = null;
}
sipService.notifyCallDisconnected(callId);
});
}
}
catch (Exception e)
{
Log.d(this, "deleteCall", e);
}
}
void deleteAudioMedia()
{
try
{
AudioMediaVector audioMediaVector = ep.mediaEnumPorts();
for (int i = 0; i < audioMediaVector.size(); i++)
{
Log.d(this, "audioMedia deleted");
AudioMedia audioMedia = audioMediaVector.get(i);
ep.mediaRemove(audioMedia);
audioMedia.delete();
}
Log.d(this, "audDevManager deleted");
ep.audDevManager().delete();
}
catch (Exception e)
{
Log.e(this, "deleteAudioMedia", e);
}
}
void deleteAccount()
{
if (mSipAccount != null)
{
try
{
mSipAccount.delete();
}
catch (final Exception e)
{
Log.e(this, e);
}
}
mSipAccount = null;
}
where
ep - Endpoint
mSipAccount - public class SipAccount extends Account
a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
09:17:43.274 tsx0x724ca828a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
09:17:43.274 tsx0x724ca828a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
09:17:43.275 tsx0x724ca828a .....State changed from Null to Terminated, event=TRANSPORT_ERROR
09:17:43.275 dlg0x7249e4c8a ......Transaction tsx0x724ca828a8 state changed to Terminated
02-07 09:17:43.276 6587-6691/pl.orange.vowifi W/MO/SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
02-07 09:17:43.276 6587-6691/pl.orange.vowifi D/MO/SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
02-07 09:17:43.276 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 pjsua_call.c Call 0 hanging up: code=0..
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 pjsua_call.c Call 0 hanging up: code=0..
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 endpoint ..Request msg CANCEL/cseq=2 (tdta0x724cb67000) created.
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 inv0x7249e4c8a ..Sending Request msg CANCEL/cseq=2 (tdta0x724cb67000)
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 dlg0x7249e4c8a ...Sending Request msg CANCEL/cseq=2 (tdta0x724cb67000)
02-07 09:17:43.276 6587-6691/pl.orange.vowifi D/MO/SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
02-07 09:17:43.276 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
02-07 09:17:43.276 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
02-07 09:17:43.277 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.277 tsx0x72488190a Timeout timer event
02-07 09:17:43.278 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.277 tsx0x72488190a .State changed from Terminated to Destroyed, event=TIMER
02-07 09:17:43.278 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.278 tdta0x7249e150 ..Destroying txdata Request msg REGISTER/cseq=4 (tdta0x7249e15000)
02-07 09:17:43.278 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.278 tsx0x72488190a Transaction destroyed!
02-07 09:17:43.278 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.278 tsx0x724ca828a Timeout timer event
02-07 09:17:43.279 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.278 tsx0x724ca828a .State changed from Terminated to Destroyed, event=TIMER
02-07 09:17:43.279 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.279 tdta0x724cb080 ..Destroying txdata Request msg CANCEL/cseq=2 (tdta0x724cb08000)
02-07 09:17:43.280 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:43.280 tsx0x724ca828a Transaction destroyed!
02-07 09:17:43.283 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.283 tsx0x724cda50a ...Transaction destroyed!
02-07 09:17:43.283 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.283 tdta0x724cb670 ...Destroying txdata Request msg CANCEL/cseq=2 (tdta0x724cb67000)
02-07 09:17:43.284 6587-6691/pl.orange.vowifi W/MO/SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
02-07 09:17:43.284 6587-6691/pl.orange.vowifi D/MO/SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
02-07 09:17:43.284 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
02-07 09:17:43.284 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
02-07 09:17:43.284 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
02-07 09:17:43.285 6587-6691/pl.orange.vowifi W/MO/SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
02-07 09:17:43.285 6587-6691/pl.orange.vowifi D/MO/SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
02-07 09:17:43.285 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
02-07 09:17:43.285 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
02-07 09:17:43.285 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
02-07 09:17:43.288 6587-6587/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.291 6587-6587/pl.orange.vowifi D/MO/SipMessageReceiverReceiver: state dc, status PJSIP_SC_DECLINE
02-07 09:17:43.291 6587-6587/pl.orange.vowifi V/MO/MemoryCache: Loading memory cache for class T1000Dataset (hash:81058802)
02-07 09:17:43.295 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize deleteAccount();
02-07 09:17:43.295 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.295 pjsua_acc.c Deleting account 0..
02-07 09:17:43.295 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.295 pjsua_acc.c Deleting account 0..
02-07 09:17:43.297 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.295 pjsua_acc.c .Account id 0 deleted
02-07 09:17:43.300 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:43.295 pjsua_acc.c .Account id 0 deleted
02-07 09:17:43.300 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize transportClose();
02-07 09:17:43.300 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize sipTpConfig.delete();
02-07 09:17:43.300 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize sipLog.delete();
02-07 09:17:43.323 6587-6587/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.325 6587-6587/pl.orange.vowifi D/MO/ActivityCall: StartFinishProcedure
02-07 09:17:43.357 271-669/? V/IdletimerController: runCmd(/system/bin/ip6tables -w -t mangle -D idletimer_mangle_POSTROUTING -o wlan0 -j IDLETIMER --timeout 15 --label 1 --send_nl_msg 1) res_ipv4=0, res_ipv6=0
02-07 09:17:43.358 670-749/? D/ConnectivityService: Sending DISCONNECTED broadcast for type 1 NetworkAgentInfo [WIFI () - 112] isDefaultNetwork=true
02-07 09:17:43.413 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Received wifi change Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) }
02-07 09:17:43.414 6587-6587/pl.orange.vowifi D/MO/WifiStateReceiver: NET INFO: null
02-07 09:17:43.414 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Already disconnected
02-07 09:17:43.545 6587-9715/pl.orange.vowifi V/MO/MemoryCache: Loading memory cache for class T1000Dataset (hash:81058802)
02-07 09:17:43.547 6587-6587/pl.orange.vowifi D/MO/AsyncGetCallLogs: onPostExecute
02-07 09:17:43.547 6587-6587/pl.orange.vowifi D/MO/StaticContext: CancelNotification 101
02-07 09:17:43.557 670-681/? I/ActivityManager: Setting hasTopUi=false for pid=780
02-07 09:17:43.558 780-780/? D/PhoneStatusBar: disable: < expand icons* alerts system_info* back home recent clock search quick_settings >
02-07 09:17:43.562 5413-5413/? D/NSConnectivityManager: Network type changed to: 8
02-07 09:17:43.602 1338-1338/? D/NetworkChangeNotifierAutoDetect: Network connectivity changed, type is: 6
02-07 09:17:43.627 271-669/? E/Netd: netlink response contains error (No such file or directory)
02-07 09:17:43.628 670-749/? D/NetworkNotificationManager: clearNotification id=112
02-07 09:17:43.628 670-749/? D/ConnectivityService: NetworkAgentInfo [VPN () - 113] EVENT_NETWORK_INFO_CHANGED, going from CONNECTED to DISCONNECTED
02-07 09:17:43.628 670-749/? D/VPN: NetworkAgent: NetworkAgent channel lost
02-07 09:17:43.628 670-749/? D/ConnectivityService: NetworkAgentInfo [VPN () - 113] got DISCONNECTED, was satisfying 2
02-07 09:17:43.641 670-749/? D/ConnectivityService: Sending DISCONNECTED broadcast for type 17 NetworkAgentInfo [VPN () - 113] isDefaultNetwork=false
02-07 09:17:43.645 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Received wifi change Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) }
02-07 09:17:43.645 6587-6587/pl.orange.vowifi D/MO/WifiStateReceiver: NET INFO: null
02-07 09:17:43.645 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Already disconnected
02-07 09:17:43.660 5413-5413/? D/NSConnectivityManager: Network type changed to: 8
02-07 09:17:43.671 6587-6587/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.705 6587-9418/pl.orange.vowifi D/MO/AsyncTaskBroadcast: connection status: Connection status: CONNECTION_ERROR Connection Error: NO_WIFI VpnState: DISABLED VpnStateError: NO_ERROR SipStatus: PJSIP_SC_SERVICE_UNAVAILABLE
02-07 09:17:43.709 6587-9418/pl.orange.vowifi V/MO/SharedPrefs: [Prefs loading] KEY_SERVICE_ON => true
02-07 09:17:43.709 6587-9418/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.714 6587-9418/pl.orange.vowifi V/MO/SharedPrefs: [Prefs loading] KEY_SERVICE_ON => true
02-07 09:17:43.719 6587-9418/pl.orange.vowifi D/MO/AsyncTaskBroadcast: connection status: Connection status: CONNECTION_ERROR Connection Error: NO_WIFI VpnState: DISABLED VpnStateError: NO_ERROR SipStatus: PJSIP_SC_SERVICE_UNAVAILABLE
02-07 09:17:43.719 6587-9418/pl.orange.vowifi V/MO/SharedPrefs: [Prefs loading] KEY_SERVICE_ON => true
02-07 09:17:43.719 6587-9418/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.722 6587-9418/pl.orange.vowifi V/MO/SharedPrefs: [Prefs loading] KEY_SERVICE_ON => true
02-07 09:17:43.724 6587-9418/pl.orange.vowifi D/MO/AsyncTaskBroadcast: connection status: Connection status: CONNECTION_ERROR Connection Error: NO_WIFI VpnState: DISABLED VpnStateError: NO_ERROR SipStatus: PJSIP_SC_SERVICE_UNAVAILABLE
02-07 09:17:43.725 6587-9418/pl.orange.vowifi V/MO/SharedPrefs: [Prefs loading] KEY_SERVICE_ON => true
02-07 09:17:43.725 6587-9418/pl.orange.vowifi D/MO/StaticContext: CancelNotification 99
02-07 09:17:43.745 6587-9567/pl.orange.vowifi V/MO/MemoryCache: Loading memory cache for class T1000Dataset (hash:81058802)
02-07 09:17:43.746 6587-6587/pl.orange.vowifi D/MO/AsyncGetCallLogs: onPostExecute
02-07 09:17:43.764 1472-1634/? W/Herrevad: Invalid mccmnc
02-07 09:17:43.770 1472-1634/? W/Herrevad: Invalid mccmnc
02-07 09:17:43.771 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:43.770 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:43.796 5413-5413/? I/NetworkQualityMonitor: Updated PredictedNetworkQuality to com.google.android.gms.herrevad.PredictedNetworkQuality[
networkType: 0
predictedLatencyMicros: -1
predictedDownThroughputBps: -1
predictedUpThroughputBps: -1
]
02-07 09:17:43.805 1472-1634/? W/Herrevad: Invalid mccmnc
02-07 09:17:43.806 1472-1634/? W/Herrevad: Invalid mccmnc
02-07 09:17:43.816 10890-10890/pl.orange.orangeaudiokino I/art: Starting a blocking GC AddRemoveAppImageSpace
02-07 09:17:43.821 10890-10890/pl.orange.orangeaudiokino W/System: ClassLoader referenced unknown path: /data/app/pl.orange.orangeaudiokino-1/lib/arm64
02-07 09:17:43.857 1472-1472/? W/Herrevad: [1] CaptivePortalChimeraReceiver.onReceive: wifi connection type error: ssid null = false, bssid null = true
02-07 09:17:43.887 670-811/? I/ActivityManager: Start proc 10931:com.mobisystems.fileman/u0a16 for broadcast com.mobisystems.fileman/com.mobisystems.files.io.NetworkChangeReceiver
02-07 09:17:43.941 10931-10931/? I/art: Starting a blocking GC AddRemoveAppImageSpace
02-07 09:17:43.947 10931-10931/? W/System: ClassLoader referenced unknown path: /data/app/com.mobisystems.fileman-1/lib/arm64
02-07 09:17:43.957 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:43.957 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:43.981 10931-10931/? W/GoogleTagManager: Failed to extract the container from the resource file. Resource is a UTF-8 encoded string but doesn't contain a JSON container
02-07 09:17:44.017 10931-10931/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled
02-07 09:17:44.023 10931-10931/? I/GAv4: Google Analytics 9.2.56 is starting up. To enable debug logging on a device run:
adb shell setprop log.tag.GAv4 DEBUG
adb logcat -s GAv4
02-07 09:17:44.035 10931-10949/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled
02-07 09:17:44.049 6587-6587/pl.orange.vowifi D/MO/WifiStateReceiver: wifi state: 1
02-07 09:17:44.049 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Received wifi change Intent { act=android.net.wifi.WIFI_STATE_CHANGED flg=0x4000010 cmp=pl.orange.vowifi/pl.orangelabs.wificalling.service.receiver.WifiStateReceiver (has extras) }
02-07 09:17:44.049 6587-6587/pl.orange.vowifi D/MO/WifiStateReceiver: NET INFO: null
02-07 09:17:44.049 6587-6587/pl.orange.vowifi I/MO/WifiStateReceiver: Already disconnected
02-07 09:17:44.066 670-683/? I/ActivityManager: Start proc 10956:com.google.android.apps.plus/u0a69 for broadcast com.google.android.apps.plus/com.google.android.libraries.social.autobackup.AutoBackupEnvironment$ConnectivityReceiver
02-07 09:17:44.156 10931-10947/? E/GoogleTagManager: Invalid macro: iapProvider
02-07 09:17:44.180 10931-10947/? E/GoogleTagManager: Invalid macro: disableOverlay
02-07 09:17:44.180 10931-10947/? I/TagManager: version: 187
02-07 09:17:44.180 10931-10947/? E/GoogleTagManager: Invalid macro: trialPremiumKey
02-07 09:17:44.187 10956-10956/? I/art: Starting a blocking GC AddRemoveAppImageSpace
02-07 09:17:44.327 670-1394/? I/ActivityManager: Killing 9907:com.android.defcontainer/u0a5 (adj 906): empty #17
02-07 09:17:44.330 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:44.330 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:44.350 670-680/? D/CryptdConnector: SND -> {28 cryptfs getpwtype}
02-07 09:17:44.350 211-217/? D/VoldCryptCmdListener: cryptfs getpwtype
02-07 09:17:44.351 670-739/? D/CryptdConnector: RCV <- {213 28 default}
02-07 09:17:44.355 670-681/? D/ActivityManager: cleanUpApplicationRecord -- 9907
02-07 09:17:44.368 670-680/? I/ActivityManager: Killing 10082:com.android.keychain/1000 (adj 906): empty #17
02-07 09:17:44.395 670-811/? D/ActivityManager: cleanUpApplicationRecord -- 10082
02-07 09:17:44.579 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.578 strm0x724cd4e8 Start talksprut..
02-07 09:17:44.579 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.579 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.579 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.579 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.600 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.600 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.600 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.600 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.642 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.642 strm0x724cd4e8 Starting silence
02-07 09:17:44.685 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.684 strm0x724cd4e8 Start talksprut..
02-07 09:17:44.685 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.685 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.685 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.685 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:44.704 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:44.704 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:44.706 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:44.706 strm0x724cd4e8 Starting silence
02-07 09:17:45.013 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.013 tsx0x724cd528a Timeout timer event
02-07 09:17:45.014 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.013 tsx0x724cd528a .State changed from Completed to Terminated, event=TIMER
02-07 09:17:45.014 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.014 dlg0x7249e4c8a ..Transaction tsx0x724cd528a8 state changed to Terminated
02-07 09:17:45.016 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.016 tsx0x724cd528a Timeout timer event
02-07 09:17:45.017 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.016 tsx0x724cd528a .State changed from Terminated to Destroyed, event=TIMER
02-07 09:17:45.017 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.017 tdta0x7249e490 ..Destroying txdata Request msg PRACK/cseq=3 (tdta0x7249e49000)
02-07 09:17:45.018 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:45.017 tsx0x724cd528a Transaction destroyed!
02-07 09:17:45.133 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.133 strm0x724cd4e8 Start talksprut..
02-07 09:17:45.133 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.133 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.133 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.133 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.155 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.154 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.155 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.154 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.176 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.176 strm0x724cd4e8 Starting silence
02-07 09:17:45.208 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:45.208 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:45.339 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:45.339 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:45.495 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.495 strm0x724cd4e8 Error sending RTCP: Network is unreachable
02-07 09:17:45.495 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.495 strm0x724cd4e8 Error sending RTCP: Network is unreachable
02-07 09:17:45.731 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:45.731 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:45.732 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.732 strm0x724cd4e8 Start talksprut..
02-07 09:17:45.732 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.732 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.732 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.732 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.753 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.753 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.753 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.753 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.776 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.776 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.776 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.776 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.794 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.794 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.794 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.794 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.816 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.815 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.816 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.815 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.837 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.837 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.837 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.837 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:45.858 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:45.858 strm0x724cd4e8 Starting silence
02-07 09:17:46.048 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.048 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:46.301 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize ep.libDestroy();
02-07 09:17:46.301 6587-6691/pl.orange.vowifi I/art: Starting a blocking GC Explicit
02-07 09:17:46.314 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.313 tsx0x724cb330a Timeout timer event
02-07 09:17:46.317 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.315 tsx0x724cb330a .State changed from Completed to Terminated, event=TIMER
02-07 09:17:46.318 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.317 dlg0x724cda18a ..Transaction tsx0x724cb330a8 state changed to Terminated
02-07 09:17:46.319 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.318 dlg0x724cda18a ...Dialog destroyed
02-07 09:17:46.326 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.325 tsx0x724cb330a Timeout timer event
02-07 09:17:46.328 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.328 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:46.330 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.330 tsx0x724cb330a .State changed from Terminated to Destroyed, event=TIMER
02-07 09:17:46.332 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.331 tdta0x724cb770 ..Destroying txdata Request msg ACK/cseq=2 (tdta0x724cb77000)
02-07 09:17:46.333 6587-9994/pl.orange.vowifi V/MO/SipLog: 09:17:46.332 tsx0x724cb330a Transaction destroyed!
02-07 09:17:46.370 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:46.370 strm0x724cd4e8 Start talksprut..
02-07 09:17:46.371 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:46.371 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:46.371 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:46.371 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:46.382 6587-6691/pl.orange.vowifi I/art: Explicit concurrent mark sweep GC freed 18176(1148KB) AllocSpace objects, 23(2MB) LOS objects, 40% free, 10MB/18MB, paused 511us total 72.946ms
02-07 09:17:46.389 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.388 pjsua_core.c Shutting down, flags=0...
02-07 09:17:46.389 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.388 pjsua_core.c Shutting down, flags=0...
02-07 09:17:46.389 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.389 pjsua_core.c PJSUA state changed: RUNNING --> CLOSING
02-07 09:17:46.389 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.389 pjsua_core.c PJSUA state changed: RUNNING --> CLOSING
02-07 09:17:46.392 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:46.392 strm0x724cd4e8 Starting silence
02-07 09:17:46.396 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.396 pjsua_call.c .Hangup all calls..
02-07 09:17:46.396 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.396 pjsua_call.c .Hangup all calls..
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 pjsua_call.c ..Call 0 hanging up: code=0..
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 pjsua_call.c ..Call 0 hanging up: code=0..
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 endpoint ....Request msg CANCEL/cseq=2 (tdta0x7249e49000) created.
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 inv0x7249e4c8a ....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000)
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 dlg0x7249e4c8a .....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000)
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 tsx0x724ca828a ......Transaction created for Request msg CANCEL/cseq=2 (tdta0x7249e49000)
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 tsx0x724ca828a .....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000) in state Null
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 endpoint ......Request msg CANCEL/cseq=2 (tdta0x7249e49000): skipping target resolution because address is already set
02-07 09:17:46.397 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 tsx0x724ca828a ......State changed from Null to Terminated, event=TRANSPORT_ERROR
02-07 09:17:46.397 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.397 dlg0x7249e4c8a .......Transaction tsx0x724ca828a8 state changed to Terminated
02-07 09:17:46.398 6587-6691/pl.orange.vowifi W/MO/SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
02-07 09:17:46.398 6587-6691/pl.orange.vowifi D/MO/SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
02-07 09:17:46.398 6587-6691/pl.orange.vowifi I/MO/SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_media.c .Call 0: deinitializing media..
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_media.c .Call 0: deinitializing media..
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 strm0x724cd4e8 ...JB summary:
size=0/eff=0 prefetch=0 level=8
delay (min/max/avg/dev)=20/160/97/62 ms
burst (min/max/avg/dev)=1/8/3/2 frames
lost=2 discard=0 empty=244
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_media.c ...Media stream call00:0 is destroyed
02-07 09:17:46.398 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_media.c ...Media stream call00:0 is destroyed
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_pres.c .Shutting down presence..
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.398 pjsua_pres.c .Shutting down presence..
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.399 tsx0x724ca828a .Timeout timer event
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.399 tsx0x724ca828a ..State changed from Terminated to Destroyed, event=TIMER
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.399 tdta0x7249e490 ...Destroying txdata Request msg CANCEL/cseq=2 (tdta0x7249e49000)
02-07 09:17:46.399 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:46.399 tsx0x724ca828a .Transaction destroyed!
02-07 09:17:46.518 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.518 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:46.582 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.581 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:46.742 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.741 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:46.767 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.767 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
02-07 09:17:46.785 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:46.785 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:47.189 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:47.189 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
02-07 09:17:47.401 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.401 pjsua_core.c .Destroying...
02-07 09:17:47.402 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.401 pjsua_core.c .Destroying...
02-07 09:17:47.402 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.402 pjsua_media.c .Shutting down media..
02-07 09:17:47.402 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.402 pjsua_media.c .Shutting down media..
02-07 09:17:47.419 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.419 pjsua_aud.c ...Closing Android JNI sound playback device and Android JNI sound capture device
02-07 09:17:47.420 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.419 pjsua_aud.c ...Closing Android JNI sound playback device and Android JNI sound capture device
02-07 09:17:47.420 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.420 android_jni_de ...Android JNI stream stopped
02-07 09:17:47.420 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.420 android_jni_de ...Android JNI stream stopped
02-07 09:17:47.420 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.420 android_jni_de ...Destroying Android JNI stream...
02-07 09:17:47.420 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.420 android_jni_de ...Destroying Android JNI stream...
02-07 09:17:47.423 6587-10833/pl.orange.vowifi V/MO/SipLog: 09:17:47.421 android_jni_de Recorder thread stopped
02-07 09:17:47.433 6587-10835/pl.orange.vowifi V/MO/SipLog: 09:17:47.432 android_jni_de Player thread stopped
02-07 09:17:47.468 262-326/? I/SoundTriggerHwService::Module: void android::SoundTriggerHwService::Module::onCallbackEvent(const sp<android::SoundTriggerHwService::CallbackEvent> &) mClient == 0
02-07 09:17:47.471 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.471 android_jni_de ...Audio record released
02-07 09:17:47.472 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.471 android_jni_de ...Audio record released
02-07 09:17:47.487 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.486 android_jni_de ...Audio track released
02-07 09:17:47.487 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.486 android_jni_de ...Audio track released
02-07 09:17:47.487 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.487 android_jni_de ...Android JNI stream destroyed
02-07 09:17:47.488 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.487 android_jni_de ...Android JNI stream destroyed
02-07 09:17:47.490 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.489 android_jni_de ..Android JNI sound library shutting down..
02-07 09:17:47.490 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.489 android_jni_de ..Android JNI sound library shutting down..
02-07 09:17:47.491 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.490 sip_endpoint.c .Destroying endpoing instance..
02-07 09:17:47.491 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.491 sip_transactio .Stopping transaction layer module
02-07 09:17:47.491 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.491 sip_transactio .Stopping transaction layer module
02-07 09:17:47.491 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.491 tsx0x724d0e18a .Request to terminate transaction
02-07 09:17:47.492 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.492 tsx0x724d0e18a ..State changed from Completed to Terminated, event=USER
02-07 09:17:47.492 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.492 dlg0x7249e4c8a ...Transaction tsx0x724d0e18a8 state changed to Terminated
02-07 09:17:47.493 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.493 tdta0x7249e580 .Destroying txdata Request msg ACK/cseq=1 (tdta0x7249e58000)
02-07 09:17:47.493 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.493 tsx0x724d0e18a .Transaction destroyed!
02-07 09:17:47.494 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.493 tsx0x724d0f18a .Request to terminate transaction
02-07 09:17:47.494 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.494 tsx0x724d0f18a ..State changed from Proceeding to Terminated, event=USER
02-07 09:17:47.495 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.495 dlg0x7249e4c8a ...Transaction tsx0x724d0f18a8 state changed to Terminated
02-07 09:17:47.495 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.495 pjsua_media.c .....Call 0: deinitializing media..
02-07 09:17:47.495 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.495 pjsua_media.c .....Call 0: deinitializing media..
02-07 09:17:47.496 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.495 pjsua_media.c .......Media stream call00:0 is destroyed
02-07 09:17:47.496 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.495 pjsua_media.c .......Media stream call00:0 is destroyed
02-07 09:17:47.497 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.496 dlg0x7249e4c8a .....Session count dec to 1 by mod-invite
02-07 09:17:47.497 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.497 dlg0x7249e4c8a ....Dialog destroyed
02-07 09:17:47.498 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.498 tdta0x724cbc10 .Destroying txdata Request msg INVITE/cseq=2 (tdta0x724cbc1000)
02-07 09:17:47.498 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.498 tsx0x724d0f18a .Transaction destroyed!
02-07 09:17:47.499 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.498 sip_transactio .Stopped transaction layer module
02-07 09:17:47.499 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.498 sip_transactio .Stopped transaction layer module
02-07 09:17:47.500 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.499 sip_endpoint.c .Module "mod-unsolicited-mwi" unregistered
02-07 09:17:47.500 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.499 sip_endpoint.c .Module "mod-unsolicited-mwi" unregistered
02-07 09:17:47.500 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-options" unregistered
02-07 09:17:47.500 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-options" unregistered
02-07 09:17:47.501 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-im" unregistered
02-07 09:17:47.501 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-im" unregistered
02-07 09:17:47.501 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua-pres" unregistered
02-07 09:17:47.501 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua-pres" unregistered
02-07 09:17:47.501 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-stateful-util" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-stateful-util" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-refer" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-refer" unregistered
02-07 09:17:47.502 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-mwi" unregistered
02-07 09:17:47.503 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-mwi" unregistered
02-07 09:17:47.503 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-presence" unregistered
02-07 09:17:47.503 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-presence" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-evsub" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-evsub" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-invite" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-invite" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-100rel" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-100rel" unregistered
02-07 09:17:47.504 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-ua" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-ua" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_transactio .Transaction layer module destroyed
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_transactio .Transaction layer module destroyed
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-tsx-layer" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-tsx-layer" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-msg-print" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-msg-print" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-pjsua-log" unregistered
02-07 09:17:47.505 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-pjsua-log" unregistered
02-07 09:17:47.506 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.506 sip_transport. .Destroying transport manager
02-07 09:17:47.508 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.507 udp0x724cb1300 .SIP UDP transport destroyed
02-07 09:17:47.508 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.507 udp0x724cb1300 .SIP UDP transport destroyed
02-07 09:17:47.508 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.508 sip_endpoint.c .Endpoint 0x724d5340a8 destroyed
02-07 09:17:47.508 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.508 sip_endpoint.c .Endpoint 0x724d5340a8 destroyed
02-07 09:17:47.509 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.509 pjsua_core.c .PJSUA state changed: CLOSING --> NULL
02-07 09:17:47.509 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.509 pjsua_core.c .PJSUA state changed: CLOSING --> NULL
02-07 09:17:47.509 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.509 pjsua_core.c .PJSUA destroyed...
02-07 09:17:47.509 6587-6691/pl.orange.vowifi V/MO/SipLog: 09:17:47.509 pjsua_core.c .PJSUA destroyed...
02-07 09:17:47.509 6587-6691/pl.orange.vowifi D/MO/SipLib: DeInitialize ep.delete();
02-07 09:17:47.510 6587-6691/pl.orange.vowifi A/libc: ../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed
02-07 09:17:47.511 6587-6691/pl.orange.vowifi A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 6691 (SipService)
[ 02-07 09:17:47.512 210: 210 W/ ]
debuggerd: handling request: pid=6587 uid=10119 gid=10119 tid=6691
02-07 09:17:47.555 262-305/? W/APM::EffectDescriptor: unregisterEffect() unknown effect ID 283
02-07 09:17:47.569 11037-11037/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
02-07 09:17:47.569 11037-11037/? A/DEBUG: Build fingerprint: 'google/volantisg/flounder_lte:7.1.1/NMF26F/3425388:user/release-keys'
02-07 09:17:47.569 11037-11037/? A/DEBUG: Revision: '0'
02-07 09:17:47.569 11037-11037/? A/DEBUG: ABI: 'arm64'
02-07 09:17:47.570 11037-11037/? A/DEBUG: pid: 6587, tid: 6691, name: SipService >>> pl.orange.vowifi <<<
02-07 09:17:47.570 11037-11037/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
02-07 09:17:47.581 11037-11037/? A/DEBUG: Abort message: '../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed'
02-07 09:17:47.581 11037-11037/? A/DEBUG: x0 0000000000000000 x1 0000000000001a23 x2 0000000000000006 x3 0000000000000008
02-07 09:17:47.581 11037-11037/? A/DEBUG: x4 000000724c9fced8 x5 0000000000800000 x6 0000000000000000 x7 0000000000000030
02-07 09:17:47.581 11037-11037/? A/DEBUG: x8 0000000000000083 x9 ffffffffffffffdf x10 0000000000000000 x11 0000000000000001
02-07 09:17:47.581 11037-11037/? A/DEBUG: x12 ffffffffffffffff x13 0000000000000000 x14 0000000000000000 x15 001e6cc13e7e965a
02-07 09:17:47.581 11037-11037/? A/DEBUG: x16 0000007269a42ec8 x17 00000072699f0294 x18 00000000ffffffff x19 000000724c9ff4f8
02-07 09:17:47.581 11037-11037/? A/DEBUG: x20 0000000000000006 x21 000000724c9ff450 x22 0000000000000000 x23 000000724ea06e96
02-07 09:17:47.581 11037-11037/? A/DEBUG: x24 0000000000000008 x25 0b8429f372ee0c9f x26 000000724dbe4098 x27 0b8429f372ee0c9f
02-07 09:17:47.581 11037-11037/? A/DEBUG: x28 0000000000000002 x29 000000724c9fd110 x30 00000072699ed73c
02-07 09:17:47.581 11037-11037/? A/DEBUG: sp 000000724c9fd0f0 pc 00000072699f029c pstate 0000000060000000
02-07 09:17:47.594 11037-11037/? A/DEBUG: backtrace:
02-07 09:17:47.595 11037-11037/? A/DEBUG: #00 pc 000000000006b29c /system/lib64/libc.so (tgkill+8)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #01 pc 0000000000068738 /system/lib64/libc.so (pthread_kill+64)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #02 pc 0000000000023d2c /system/lib64/libc.so (raise+24)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #03 pc 000000000001c7b0 /system/lib64/libc.so (abort+52)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #04 pc 0000000000020d38 /system/lib64/libc.so (__libc_fatal+104)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #05 pc 000000000001cbc0 /system/lib64/libc.so (__assert2+48)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #06 pc 00000000001fd9bc /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (pjmedia_conf_remove_port+112)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #07 pc 0000000000196c74 /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (pjsua_conf_remove_port+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #08 pc 000000000015d328 /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMedia19unregisterMediaPortEv+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #09 pc 000000000015d3a4 /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMediaD1Ev+40)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #10 pc 000000000015b06c /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD1Ev+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #11 pc 000000000015b09c /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD0Ev+16)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #12 pc 00000000001402b0 /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN2pj8EndpointD1Ev+184)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #13 pc 00000000000c859c /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD2Ev+96)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #14 pc 00000000000c8604 /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD0Ev+16)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #15 pc 0000000000112a5c /data/app/pl.orange.vowifi-2/lib/arm64/libpjsua2.so (Java_org_pjsip_pjsua2_pjsua2JNI_delete_1Endpoint+68)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #16 pc 00000000009f2fb4 /data/app/pl.orange.vowifi-2/oat/arm64/base.odex (offset 0x8d9000)
Log:SipLib: unregisterAccounts
Log:SipLog: 09:17:43.260 pjsua_acc.c Acc 0: setting unregistration..
Log:SipLog: 09:17:43.260 pjsua_acc.c Acc 0: setting unregistration..
Log:SipLog: 09:17:43.260 endpoint .Request msg REGISTER/cseq=3 (tdta0x7249e15000) created.
Log:SipLog: 09:17:43.260 tsx0x72488190a ..Transaction created for Request msg REGISTER/cseq=4 (tdta0x7249e15000)
Log:SipLog: 09:17:43.260 tsx0x72488190a .Sending Request msg REGISTER/cseq=4 (tdta0x7249e15000) in state Null
Log:SipLog: 09:17:43.260 sip_resolve.c ..Target '172.18.91.245:5060' type=Unspecified resolved to '172.18.91.245:5060' type=UDP (UDP transport)
Log:SipLog: 09:17:43.261 pjsua_core.c ..TX 589 bytes Request msg REGISTER/cseq=4 (tdta0x7249e15000) to UDP 172.18.91.245:5060:
REGISTER sip:ims.mnc003.mcc260.3gppnetwork.org SIP/2.0
Via: SIP/2.0/UDP 10.120.4.63:6000;rport;transport=UDP;branch=z9hG4bKPja87615ae-ffd8-4ef8-b716-1364a7045710
Route: <sip:172.18.91.245:5060;lr>
Max-Forwards: 70
From: <sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>;tag=ecf377c2-db91-4182-9dfc-8cee418c9529
To: <sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Call-ID: 531cbe94-7b90-48b0-81f2-d5a0e6a23be8
CSeq: 4 REGISTER
P-Access-Network-Info: IEEE-802.11
User-Agent: VoWiFi_34 2.6-svn
Contact: <sip:+48517991237@10.120.4.63:6000>
Expires: 0
Content-Length: 0
--end msg--
Log:SipLog: 09:17:43.261 pjsua_core.c ..TX 589 bytes Request msg REGISTER/cseq=4 (tdta0x7249e15000) to UDP 172.18.91.245:5060:
REGISTER sip:ims.mnc003.mcc260.3gppnetwork.org SIP/2.0
Via: SIP/2.0/UDP 10.120.4.63:6000;rport;transport=UDP;branch=z9hG4bKPja87615ae-ffd8-4ef8-b716-1364a7045710
Route: <sip:172.18.91.245:5060;lr>
Max-Forwards: 70
From: <sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>;tag=ecf377c2-db91-4182-9dfc-8cee418c9529
To: <sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Call-ID: 531cbe94-7b90-48b0-81f2-d5a0e6a23be8
CSeq: 4 REGISTER
P-Access-Network-Info: IEEE-802.11
User-Agent: VoWiFi_34 2.6-svn
Contact: <sip:+48517991237@10.120.4.63:6000>
Expires: 0
Content-Length: 0
--end msg--
Log:SipLog: 09:17:43.261 tsx0x72488190a ..Failed to send Request msg REGISTER/cseq=4 (tdta0x7249e15000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.261 tsx0x72488190a ..Failed to send Request msg REGISTER/cseq=4 (tdta0x7249e15000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.261 tsx0x72488190a ..Failed to send Request msg REGISTER/cseq=4 (tdta0x7249e15000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.261 tsx0x72488190a ..State changed from Null to Terminated, event=TRANSPORT_ERROR
Log:SipLog: 09:17:43.261 pjsua_acc.c ....SIP registration failed, status=503 (Network is unreachable)
Log:SipLog: 09:17:43.261 pjsua_acc.c ....SIP registration failed, status=503 (Network is unreachable)
Log:SipLog: 09:17:43.261 pjsua_acc.c ....SIP registration failed, status=503 (Network is unreachable)
Log:SipLog: 09:17:43.261 pjsua_acc.c ....SIP registration failed, status=503 (Network is unreachable)
Log:SipLog: 09:17:43.261 pjsua_acc.c ....Scheduling re-registration retry for acc 0 in 8 seconds..
Log:SipLog: 09:17:43.261 pjsua_acc.c ....Scheduling re-registration retry for acc 0 in 8 seconds..
Log:SipAccount: onRegState
Log:SipLog: 09:17:43.268 sip_reg.c .Error sending request, status=120101
Log:SipLog: 09:17:43.268 sip_reg.c .Error sending request, status=120101
Log:SipLog: 09:17:43.269 pjsua_acc.c .Unable to create/send REGISTER: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.269 pjsua_acc.c .Unable to create/send REGISTER: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.269 pjsua_acc.c .Unable to create/send REGISTER: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.269 pjsua_acc.c .Unable to create/send REGISTER: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.269 pjsua_acc.c .Unable to create/send REGISTER: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.269 account.cpp pjsua_acc_set_registration(id, renew) error: Network is unreachable (status=120101) [../src/pjsua2/account.cpp:749]
Log:SipLog: 09:17:43.269 account.cpp pjsua_acc_set_registration(id, renew) error: Network is unreachable (status=120101) [../src/pjsua2/account.cpp:749]
Log:SipLog: 09:17:43.269 account.cpp pjsua_acc_set_registration(id, renew) error: Network is unreachable (status=120101) [../src/pjsua2/account.cpp:749]
Log:SipLog: 09:17:43.269 account.cpp pjsua_acc_set_registration(id, renew) error: Network is unreachable (status=120101) [../src/pjsua2/account.cpp:749]
Log:SipLog: 09:17:43.269 account.cpp pjsua_acc_set_registration(id, renew) error: Network is unreachable (status=120101) [../src/pjsua2/account.cpp:749]
Log:SipLib: java.lang.Exception: Title: pjsua_acc_set_registration(id, renew)
Code: 120101
Description: Network is unreachable
Location: ../src/pjsua2/account.cpp:749
at org.pjsip.pjsua2.pjsua2JNI.Account_setRegistration(Native Method)
at org.pjsip.pjsua2.Account.setRegistration(Account.java:96)
at com.android.sipapp.SipLib.unregisterAccounts(SipLib.java:374)
at com.android.sipapp.SipService.unRegAccount(SipService.java:326)
at com.android.sipapp.SipService.lambda$onStartCommand$1(SipService.java:133)
at com.android.sipapp.SipService.access$lambda$1(SipService.java)
at com.android.sipapp.SipService$$Lambda$2.run(Unknown Source)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.os.HandlerThread.run(HandlerThread.java:61)
Log:SipLib: DeInitialize
Log:SipLib: DeInitialize deleteAudioMedia();
Log:SipLib: audioMedia deleted
Log:SipLib: audDevManager deleted
Log:SipLib: DeInitialize deleteCall();
Log:SipLog: 09:17:43.271 pjsua_call.c Hangup all calls..
Log:SipLog: 09:17:43.271 pjsua_call.c Hangup all calls..
Log:SipLog: 09:17:43.273 pjsua_call.c .Call 0 hanging up: code=0..
Log:SipLog: 09:17:43.273 pjsua_call.c .Call 0 hanging up: code=0..
Log:SipLog: 09:17:43.273 endpoint ...Request msg CANCEL/cseq=2 (tdta0x724cb08000) created.
Log:SipLog: 09:17:43.274 inv0x7249e4c8a ...Sending Request msg CANCEL/cseq=2 (tdta0x724cb08000)
Log:SipLog: 09:17:43.274 dlg0x7249e4c8a ....Sending Request msg CANCEL/cseq=2 (tdta0x724cb08000)
Log:SipLog: 09:17:43.274 tsx0x724ca828a .....Transaction created for Request msg CANCEL/cseq=2 (tdta0x724cb08000)
Log:SipLog: 09:17:43.274 tsx0x724ca828a ....Sending Request msg CANCEL/cseq=2 (tdta0x724cb08000) in state Null
Log:SipLog: 09:17:43.274 endpoint .....Request msg CANCEL/cseq=2 (tdta0x724cb08000): skipping target resolution because address is already set
Log:SipLog: 09:17:43.274 pjsua_core.c .....TX 494 bytes Request msg CANCEL/cseq=2 (tdta0x724cb08000) to UDP 172.18.91.245:5060:
CANCEL sip:509384517@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SIP/2.0
Via: SIP/2.0/UDP 10.120.4.63:6000;rport;transport=UDP;branch=z9hG4bKPjddbe21f8-0088-4daf-8065-2fcae3c3713c
Max-Forwards: 70
From: sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx;tag=2ffc1cf5-317c-4d41-8e42-aa69e079ec99
To: sip:509384517@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Call-ID: 230c4b03-5d9a-4492-8106-92da8466a348
CSeq: 2 CANCEL
Route: <sip:172.18.91.245:5060;lr>
User-Agent: VoWiFi_34 2.6-svn
Content-Length: 0
--end msg--
Log:SipLog: 09:17:43.274 pjsua_core.c .....TX 494 bytes Request msg CANCEL/cseq=2 (tdta0x724cb08000) to UDP 172.18.91.245:5060:
CANCEL sip:509384517@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SIP/2.0
Via: SIP/2.0/UDP 10.120.4.63:6000;rport;transport=UDP;branch=z9hG4bKPjddbe21f8-0088-4daf-8065-2fcae3c3713c
Max-Forwards: 70
From: sip:+48517991237@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx;tag=2ffc1cf5-317c-4d41-8e42-aa69e079ec99
To: sip:509384517@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Call-ID: 230c4b03-5d9a-4492-8106-92da8466a348
CSeq: 2 CANCEL
Route: <sip:172.18.91.245:5060;lr>
User-Agent: VoWiFi_34 2.6-svn
Content-Length: 0
--end msg--
Log:SipLog: 09:17:43.274 tsx0x724ca828a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.274 tsx0x724ca828a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.274 tsx0x724ca828a .....Failed to send Request msg CANCEL/cseq=2 (tdta0x724cb08000)! err=120101 (Network is unreachable)
Log:SipLog: 09:17:43.275 tsx0x724ca828a .....State changed from Null to Terminated, event=TRANSPORT_ERROR
Log:SipLog: 09:17:43.275 dlg0x7249e4c8a ......Transaction tsx0x724ca828a8 state changed to Terminated
Log:SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.275 pjsua_call.c ..Failed to send end session message: Network is unreachable [status=120101]
Log:SipLog: 09:17:43.276 pjsua_call.c Call 0 hanging up: code=0..
Log:SipLog: 09:17:43.276 pjsua_call.c Call 0 hanging up: code=0..
Log:SipLog: 09:17:43.276 endpoint ..Request msg CANCEL/cseq=2 (tdta0x724cb67000) created.
Log:SipLog: 09:17:43.276 inv0x7249e4c8a ..Sending Request msg CANCEL/cseq=2 (tdta0x724cb67000)
Log:SipLog: 09:17:43.276 dlg0x7249e4c8a ...Sending Request msg CANCEL/cseq=2 (tdta0x724cb67000)
Log:SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
Log:SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
Log:SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
Log:SipLog: 09:17:43.276 sip_transactio ...Unable to register CANCEL transaction (key exists)
Log:SipLog: 09:17:43.277 tsx0x72488190a Timeout timer event
Log:SipLog: 09:17:43.277 tsx0x72488190a .State changed from Terminated to Destroyed, event=TIMER
Log:SipLog: 09:17:43.278 tdta0x7249e150 ..Destroying txdata Request msg REGISTER/cseq=4 (tdta0x7249e15000)
Log:SipLog: 09:17:43.278 tsx0x72488190a Transaction destroyed!
Log:SipLog: 09:17:43.278 tsx0x724ca828a Timeout timer event
Log:SipLog: 09:17:43.278 tsx0x724ca828a .State changed from Terminated to Destroyed, event=TIMER
Log:SipLog: 09:17:43.279 tdta0x724cb080 ..Destroying txdata Request msg CANCEL/cseq=2 (tdta0x724cb08000)
Log:SipLog: 09:17:43.280 tsx0x724ca828a Transaction destroyed!
Log:SipLog: 09:17:43.283 tsx0x724cda50a ...Transaction destroyed!
Log:SipLog: 09:17:43.283 tdta0x724cb670 ...Destroying txdata Request msg CANCEL/cseq=2 (tdta0x724cb67000)
Log:SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
Log:SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
Log:SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
Log:SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
Log:SipLog: 09:17:43.283 pjsua_call.c .Failed to send end session message: Object already exists (PJ_EEXISTS) [status=70015]
Log:SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
Log:SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
Log:SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
Log:SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
Log:SipLog: 09:17:43.284 call.cpp pjsua_call_hangup(id, prm.statusCode, param.p_reason, param.p_msg_data) error: Object already exists (PJ_EEXISTS) (status=70015) [../src/pjsua2/call.cpp:506]
Log:SipLib: DeInitialize deleteAccount();
Log:SipLog: 09:17:43.295 pjsua_acc.c Deleting account 0..
Log:SipLog: 09:17:43.295 pjsua_acc.c Deleting account 0..
Log:SipLog: 09:17:43.295 pjsua_acc.c .Account id 0 deleted
Log:SipLog: 09:17:43.295 pjsua_acc.c .Account id 0 deleted
Log:SipLib: DeInitialize transportClose();
Log:SipLib: DeInitialize sipTpConfig.delete();
Log:SipLib: DeInitialize sipLog.delete();
Log:StaticContext: CancelNotification 99
Log:ActivityCall: StartFinishProcedure
Log:SipLog: 09:17:43.770 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:43.957 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:44.330 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:44.578 strm0x724cd4e8 Start talksprut..
Log:SipLog: 09:17:44.579 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.579 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.600 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.600 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.642 strm0x724cd4e8 Starting silence
Log:SipLog: 09:17:44.684 strm0x724cd4e8 Start talksprut..
Log:SipLog: 09:17:44.685 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.685 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:44.704 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:44.706 strm0x724cd4e8 Starting silence
Log:SipLog: 09:17:45.013 tsx0x724cd528a Timeout timer event
Log:SipLog: 09:17:45.013 tsx0x724cd528a .State changed from Completed to Terminated, event=TIMER
Log:SipLog: 09:17:45.014 dlg0x7249e4c8a ..Transaction tsx0x724cd528a8 state changed to Terminated
Log:SipLog: 09:17:45.016 tsx0x724cd528a Timeout timer event
Log:SipLog: 09:17:45.016 tsx0x724cd528a .State changed from Terminated to Destroyed, event=TIMER
Log:SipLog: 09:17:45.017 tdta0x7249e490 ..Destroying txdata Request msg PRACK/cseq=3 (tdta0x7249e49000)
Log:SipLog: 09:17:45.017 tsx0x724cd528a Transaction destroyed!
Log:SipLog: 09:17:45.133 strm0x724cd4e8 Start talksprut..
Log:SipLog: 09:17:45.133 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.133 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.154 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.154 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.176 strm0x724cd4e8 Starting silence
Log:SipLog: 09:17:45.208 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:45.339 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:45.495 strm0x724cd4e8 Error sending RTCP: Network is unreachable
Log:SipLog: 09:17:45.495 strm0x724cd4e8 Error sending RTCP: Network is unreachable
Log:SipLog: 09:17:45.731 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:45.732 strm0x724cd4e8 Start talksprut..
Log:SipLog: 09:17:45.732 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.732 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.753 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.753 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.776 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.776 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.794 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.794 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.815 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.815 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.837 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.837 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:45.858 strm0x724cd4e8 Starting silence
Log:SipLog: 09:17:46.048 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLib: DeInitialize ep.libDestroy();
02-07 09:17:46.301 6587-6691/com.android.sipapp I/art: Starting a blocking GC Explicit
Log:SipLog: 09:17:46.313 tsx0x724cb330a Timeout timer event
Log:SipLog: 09:17:46.315 tsx0x724cb330a .State changed from Completed to Terminated, event=TIMER
Log:SipLog: 09:17:46.317 dlg0x724cda18a ..Transaction tsx0x724cb330a8 state changed to Terminated
Log:SipLog: 09:17:46.318 dlg0x724cda18a ...Dialog destroyed
Log:SipLog: 09:17:46.325 tsx0x724cb330a Timeout timer event
Log:SipLog: 09:17:46.328 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:46.330 tsx0x724cb330a .State changed from Terminated to Destroyed, event=TIMER
Log:SipLog: 09:17:46.331 tdta0x724cb770 ..Destroying txdata Request msg ACK/cseq=2 (tdta0x724cb77000)
Log:SipLog: 09:17:46.332 tsx0x724cb330a Transaction destroyed!
Log:SipLog: 09:17:46.370 strm0x724cd4e8 Start talksprut..
Log:SipLog: 09:17:46.371 strm0x724cd4e8 Error sending RTP: Network is unreachable
Log:SipLog: 09:17:46.371 strm0x724cd4e8 Error sending RTP: Network is unreachable
02-07 09:17:46.382 6587-6691/com.android.sipapp I/art: Explicit concurrent mark sweep GC freed 18176(1148KB) AllocSpace objects, 23(2MB) LOS objects, 40% free, 10MB/18MB, paused 511us total 72.946ms
Log:SipLog: 09:17:46.388 pjsua_core.c Shutting down, flags=0...
Log:SipLog: 09:17:46.388 pjsua_core.c Shutting down, flags=0...
Log:SipLog: 09:17:46.389 pjsua_core.c PJSUA state changed: RUNNING --> CLOSING
Log:SipLog: 09:17:46.389 pjsua_core.c PJSUA state changed: RUNNING --> CLOSING
Log:SipLog: 09:17:46.392 strm0x724cd4e8 Starting silence
Log:SipLog: 09:17:46.396 pjsua_call.c .Hangup all calls..
Log:SipLog: 09:17:46.396 pjsua_call.c .Hangup all calls..
Log:SipLog: 09:17:46.397 pjsua_call.c ..Call 0 hanging up: code=0..
Log:SipLog: 09:17:46.397 pjsua_call.c ..Call 0 hanging up: code=0..
Log:SipLog: 09:17:46.397 endpoint ....Request msg CANCEL/cseq=2 (tdta0x7249e49000) created.
Log:SipLog: 09:17:46.397 inv0x7249e4c8a ....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000)
Log:SipLog: 09:17:46.397 dlg0x7249e4c8a .....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000)
Log:SipLog: 09:17:46.397 tsx0x724ca828a ......Transaction created for Request msg CANCEL/cseq=2 (tdta0x7249e49000)
Log:SipLog: 09:17:46.397 tsx0x724ca828a .....Sending Request msg CANCEL/cseq=2 (tdta0x7249e49000) in state Null
Log:SipLog: 09:17:46.397 endpoint ......Request msg CANCEL/cseq=2 (tdta0x7249e49000): skipping target resolution because address is already set
Log:SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
Log:SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
Log:SipLog: 09:17:46.397 tsx0x724ca828a ......Failed to send Request msg CANCEL/cseq=2 (tdta0x7249e49000)! err=171060 (Unsupported transport (PJSIP_EUNSUPTRANSPORT))
Log:SipLog: 09:17:46.397 tsx0x724ca828a ......State changed from Null to Terminated, event=TRANSPORT_ERROR
Log:SipLog: 09:17:46.397 dlg0x7249e4c8a .......Transaction tsx0x724ca828a8 state changed to Terminated
Log:SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
Log:SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
Log:SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
Log:SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
Log:SipLog: 09:17:46.398 pjsua_call.c ...Failed to send end session message: Unsupported transport (PJSIP_EUNSUPTRANSPORT) [status=171060]
Log:SipLog: 09:17:46.398 pjsua_media.c .Call 0: deinitializing media..
Log:SipLog: 09:17:46.398 pjsua_media.c .Call 0: deinitializing media..
Log:SipLog: 09:17:46.398 strm0x724cd4e8 ...JB summary:
size=0/eff=0 prefetch=0 level=8
delay (min/max/avg/dev)=20/160/97/62 ms
burst (min/max/avg/dev)=1/8/3/2 frames
lost=2 discard=0 empty=244
Log:SipLog: 09:17:46.398 pjsua_media.c ...Media stream call00:0 is destroyed
Log:SipLog: 09:17:46.398 pjsua_media.c ...Media stream call00:0 is destroyed
Log:SipLog: 09:17:46.398 pjsua_pres.c .Shutting down presence..
Log:SipLog: 09:17:46.398 pjsua_pres.c .Shutting down presence..
Log:SipLog: 09:17:46.399 tsx0x724ca828a .Timeout timer event
Log:SipLog: 09:17:46.399 tsx0x724ca828a ..State changed from Terminated to Destroyed, event=TIMER
Log:SipLog: 09:17:46.399 tdta0x7249e490 ...Destroying txdata Request msg CANCEL/cseq=2 (tdta0x7249e49000)
Log:SipLog: 09:17:46.399 tsx0x724ca828a .Transaction destroyed!
Log:SipLog: 09:17:46.518 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:46.581 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:46.741 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:46.767 speex warning: Had to discard a playback frame (your application is buggy and/or got xruns)
Log:SipLog: 09:17:46.785 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:47.189 speex warning: Auto-filling the buffer (your application is buggy and/or got xruns)
Log:SipLog: 09:17:47.401 pjsua_core.c .Destroying...
Log:SipLog: 09:17:47.401 pjsua_core.c .Destroying...
Log:SipLog: 09:17:47.402 pjsua_media.c .Shutting down media..
Log:SipLog: 09:17:47.402 pjsua_media.c .Shutting down media..
Log:SipLog: 09:17:47.419 pjsua_aud.c ...Closing Android JNI sound playback device and Android JNI sound capture device
Log:SipLog: 09:17:47.419 pjsua_aud.c ...Closing Android JNI sound playback device and Android JNI sound capture device
Log:SipLog: 09:17:47.420 android_jni_de ...Android JNI stream stopped
Log:SipLog: 09:17:47.420 android_jni_de ...Android JNI stream stopped
Log:SipLog: 09:17:47.420 android_jni_de ...Destroying Android JNI stream...
Log:SipLog: 09:17:47.420 android_jni_de ...Destroying Android JNI stream...
Log:SipLog: 09:17:47.421 android_jni_de Recorder thread stopped
Log:SipLog: 09:17:47.432 android_jni_de Player thread stopped
Log:SipLog: 09:17:47.471 android_jni_de ...Audio record released
Log:SipLog: 09:17:47.471 android_jni_de ...Audio record released
Log:SipLog: 09:17:47.486 android_jni_de ...Audio track released
Log:SipLog: 09:17:47.486 android_jni_de ...Audio track released
Log:SipLog: 09:17:47.487 android_jni_de ...Android JNI stream destroyed
Log:SipLog: 09:17:47.487 android_jni_de ...Android JNI stream destroyed
Log:SipLog: 09:17:47.489 android_jni_de ..Android JNI sound library shutting down..
Log:SipLog: 09:17:47.489 android_jni_de ..Android JNI sound library shutting down..
Log:SipLog: 09:17:47.490 sip_endpoint.c .Destroying endpoing instance..
Log:SipLog: 09:17:47.491 sip_transactio .Stopping transaction layer module
Log:SipLog: 09:17:47.491 sip_transactio .Stopping transaction layer module
Log:SipLog: 09:17:47.491 tsx0x724d0e18a .Request to terminate transaction
Log:SipLog: 09:17:47.492 tsx0x724d0e18a ..State changed from Completed to Terminated, event=USER
Log:SipLog: 09:17:47.492 dlg0x7249e4c8a ...Transaction tsx0x724d0e18a8 state changed to Terminated
Log:SipLog: 09:17:47.493 tdta0x7249e580 .Destroying txdata Request msg ACK/cseq=1 (tdta0x7249e58000)
Log:SipLog: 09:17:47.493 tsx0x724d0e18a .Transaction destroyed!
Log:SipLog: 09:17:47.493 tsx0x724d0f18a .Request to terminate transaction
Log:SipLog: 09:17:47.494 tsx0x724d0f18a ..State changed from Proceeding to Terminated, event=USER
Log:SipLog: 09:17:47.495 dlg0x7249e4c8a ...Transaction tsx0x724d0f18a8 state changed to Terminated
Log:SipLog: 09:17:47.495 pjsua_media.c .....Call 0: deinitializing media..
Log:SipLog: 09:17:47.495 pjsua_media.c .....Call 0: deinitializing media..
Log:SipLog: 09:17:47.495 pjsua_media.c .......Media stream call00:0 is destroyed
Log:SipLog: 09:17:47.495 pjsua_media.c .......Media stream call00:0 is destroyed
Log:SipLog: 09:17:47.496 dlg0x7249e4c8a .....Session count dec to 1 by mod-invite
Log:SipLog: 09:17:47.497 dlg0x7249e4c8a ....Dialog destroyed
Log:SipLog: 09:17:47.498 tdta0x724cbc10 .Destroying txdata Request msg INVITE/cseq=2 (tdta0x724cbc1000)
Log:SipLog: 09:17:47.498 tsx0x724d0f18a .Transaction destroyed!
Log:SipLog: 09:17:47.498 sip_transactio .Stopped transaction layer module
Log:SipLog: 09:17:47.498 sip_transactio .Stopped transaction layer module
Log:SipLog: 09:17:47.499 sip_endpoint.c .Module "mod-unsolicited-mwi" unregistered
Log:SipLog: 09:17:47.499 sip_endpoint.c .Module "mod-unsolicited-mwi" unregistered
Log:SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-options" unregistered
Log:SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-options" unregistered
Log:SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-im" unregistered
Log:SipLog: 09:17:47.500 sip_endpoint.c .Module "mod-pjsua-im" unregistered
Log:SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua-pres" unregistered
Log:SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua-pres" unregistered
Log:SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua" unregistered
Log:SipLog: 09:17:47.501 sip_endpoint.c .Module "mod-pjsua" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-stateful-util" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-stateful-util" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-refer" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-refer" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-mwi" unregistered
Log:SipLog: 09:17:47.502 sip_endpoint.c .Module "mod-mwi" unregistered
Log:SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-presence" unregistered
Log:SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-presence" unregistered
Log:SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-evsub" unregistered
Log:SipLog: 09:17:47.503 sip_endpoint.c .Module "mod-evsub" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-invite" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-invite" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-100rel" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-100rel" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-ua" unregistered
Log:SipLog: 09:17:47.504 sip_endpoint.c .Module "mod-ua" unregistered
Log:SipLog: 09:17:47.505 sip_transactio .Transaction layer module destroyed
Log:SipLog: 09:17:47.505 sip_transactio .Transaction layer module destroyed
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-tsx-layer" unregistered
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-tsx-layer" unregistered
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-msg-print" unregistered
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-msg-print" unregistered
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-pjsua-log" unregistered
Log:SipLog: 09:17:47.505 sip_endpoint.c .Module "mod-pjsua-log" unregistered
Log:SipLog: 09:17:47.506 sip_transport. .Destroying transport manager
Log:SipLog: 09:17:47.507 udp0x724cb1300 .SIP UDP transport destroyed
Log:SipLog: 09:17:47.507 udp0x724cb1300 .SIP UDP transport destroyed
Log:SipLog: 09:17:47.508 sip_endpoint.c .Endpoint 0x724d5340a8 destroyed
Log:SipLog: 09:17:47.508 sip_endpoint.c .Endpoint 0x724d5340a8 destroyed
Log:SipLog: 09:17:47.509 pjsua_core.c .PJSUA state changed: CLOSING --> NULL
Log:SipLog: 09:17:47.509 pjsua_core.c .PJSUA state changed: CLOSING --> NULL
Log:SipLog: 09:17:47.509 pjsua_core.c .PJSUA destroyed...
Log:SipLog: 09:17:47.509 pjsua_core.c .PJSUA destroyed...
Log:SipLib: DeInitialize ep.delete();
02-07 09:17:47.510 6587-6691/com.android.sipapp A/libc: ../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed
02-07 09:17:47.511 6587-6691/com.android.sipapp A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 6691 (SipService)
[ 02-07 09:17:47.512 210: 210 W/ ]
debuggerd: handling request: pid=6587 uid=10119 gid=10119 tid=6691
02-07 09:17:47.555 262-305/? W/APM::EffectDescriptor: unregisterEffect() unknown effect ID 283
02-07 09:17:47.569 11037-11037/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
02-07 09:17:47.569 11037-11037/? A/DEBUG: Build fingerprint: 'google/volantisg/flounder_lte:7.1.1/NMF26F/3425388:user/release-keys'
02-07 09:17:47.569 11037-11037/? A/DEBUG: Revision: '0'
02-07 09:17:47.569 11037-11037/? A/DEBUG: ABI: 'arm64'
02-07 09:17:47.570 11037-11037/? A/DEBUG: pid: 6587, tid: 6691, name: SipService >>> com.android.sipapp <<<
02-07 09:17:47.570 11037-11037/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
02-07 09:17:47.581 11037-11037/? A/DEBUG: Abort message: '../src/pjmedia/conf_switch.c:734: pjmedia_conf_remove_port: assertion "conf && port < conf->max_ports" failed'
02-07 09:17:47.581 11037-11037/? A/DEBUG: x0 0000000000000000 x1 0000000000001a23 x2 0000000000000006 x3 0000000000000008
02-07 09:17:47.581 11037-11037/? A/DEBUG: x4 000000724c9fced8 x5 0000000000800000 x6 0000000000000000 x7 0000000000000030
02-07 09:17:47.581 11037-11037/? A/DEBUG: x8 0000000000000083 x9 ffffffffffffffdf x10 0000000000000000 x11 0000000000000001
02-07 09:17:47.581 11037-11037/? A/DEBUG: x12 ffffffffffffffff x13 0000000000000000 x14 0000000000000000 x15 001e6cc13e7e965a
02-07 09:17:47.581 11037-11037/? A/DEBUG: x16 0000007269a42ec8 x17 00000072699f0294 x18 00000000ffffffff x19 000000724c9ff4f8
02-07 09:17:47.581 11037-11037/? A/DEBUG: x20 0000000000000006 x21 000000724c9ff450 x22 0000000000000000 x23 000000724ea06e96
02-07 09:17:47.581 11037-11037/? A/DEBUG: x24 0000000000000008 x25 0b8429f372ee0c9f x26 000000724dbe4098 x27 0b8429f372ee0c9f
02-07 09:17:47.581 11037-11037/? A/DEBUG: x28 0000000000000002 x29 000000724c9fd110 x30 00000072699ed73c
02-07 09:17:47.581 11037-11037/? A/DEBUG: sp 000000724c9fd0f0 pc 00000072699f029c pstate 0000000060000000
02-07 09:17:47.594 11037-11037/? A/DEBUG: backtrace:
02-07 09:17:47.595 11037-11037/? A/DEBUG: #00 pc 000000000006b29c /system/lib64/libc.so (tgkill+8)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #01 pc 0000000000068738 /system/lib64/libc.so (pthread_kill+64)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #02 pc 0000000000023d2c /system/lib64/libc.so (raise+24)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #03 pc 000000000001c7b0 /system/lib64/libc.so (abort+52)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #04 pc 0000000000020d38 /system/lib64/libc.so (__libc_fatal+104)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #05 pc 000000000001cbc0 /system/lib64/libc.so (__assert2+48)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #06 pc 00000000001fd9bc /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (pjmedia_conf_remove_port+112)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #07 pc 0000000000196c74 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (pjsua_conf_remove_port+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #08 pc 000000000015d328 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMedia19unregisterMediaPortEv+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #09 pc 000000000015d3a4 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj10AudioMediaD1Ev+40)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #10 pc 000000000015b06c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD1Ev+36)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #11 pc 000000000015b09c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN14CallAudioMediaD0Ev+16)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #12 pc 00000000001402b0 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN2pj8EndpointD1Ev+184)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #13 pc 00000000000c859c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD2Ev+96)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #14 pc 00000000000c8604 /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (_ZN21SwigDirector_EndpointD0Ev+16)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #15 pc 0000000000112a5c /data/app/com.android.sipapp-2/lib/arm64/libpjsua2.so (Java_org_pjsip_pjsua2_pjsua2JNI_delete_1Endpoint+68)
02-07 09:17:47.595 11037-11037/? A/DEBUG: #16 pc 00000000009f2fb4 /data/app/com.android.sipapp-2/oat/arm64/base.odex (offset 0x8d9000)
_______________________________________________
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@xxxxxxxxxxxxxxx
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org