Loading voip/java/com/android/server/sip/SipSessionGroup.java +8 −6 Original line number Diff line number Diff line Loading @@ -871,9 +871,14 @@ class SipSessionGroup implements SipListener { + mAuthenticationRetryCount); } return true; } else { if (crossDomainAuthenticationRequired(response)) { onError(SipErrorCode.CROSS_DOMAIN_AUTHENTICATION, getRealmFromResponse(response)); } else { onError(SipErrorCode.INVALID_CREDENTIALS, "incorrect username or password"); } return false; } } Loading Loading @@ -1025,10 +1030,7 @@ class SipSessionGroup implements SipListener { return true; case Response.UNAUTHORIZED: case Response.PROXY_AUTHENTICATION_REQUIRED: if (crossDomainAuthenticationRequired(response)) { onError(SipErrorCode.CROSS_DOMAIN_AUTHENTICATION, getRealmFromResponse(response)); } else if (handleAuthentication(event)) { if (handleAuthentication(event)) { addSipSession(this); } return true; Loading Loading
voip/java/com/android/server/sip/SipSessionGroup.java +8 −6 Original line number Diff line number Diff line Loading @@ -871,9 +871,14 @@ class SipSessionGroup implements SipListener { + mAuthenticationRetryCount); } return true; } else { if (crossDomainAuthenticationRequired(response)) { onError(SipErrorCode.CROSS_DOMAIN_AUTHENTICATION, getRealmFromResponse(response)); } else { onError(SipErrorCode.INVALID_CREDENTIALS, "incorrect username or password"); } return false; } } Loading Loading @@ -1025,10 +1030,7 @@ class SipSessionGroup implements SipListener { return true; case Response.UNAUTHORIZED: case Response.PROXY_AUTHENTICATION_REQUIRED: if (crossDomainAuthenticationRequired(response)) { onError(SipErrorCode.CROSS_DOMAIN_AUTHENTICATION, getRealmFromResponse(response)); } else if (handleAuthentication(event)) { if (handleAuthentication(event)) { addSipSession(this); } return true; Loading