--- a/realtimenetprots/sipfw/ProfileAgent/IETF_Agent/src/Sipietfprofilecontext.cpp Mon Jun 28 19:10:29 2010 +0300
+++ b/realtimenetprots/sipfw/ProfileAgent/IETF_Agent/src/Sipietfprofilecontext.cpp Fri Jul 09 13:15:39 2010 +0300
@@ -442,12 +442,12 @@
CurrentState() == MSIPProfileContext::ERegistered) &&
(aError == K408TimeOut ||
aError == K500ServerInternalError ||
- aError == KErrSIPOutboundProxyNotResponding ||
+ aError == KErrTimedOut ||
+ (( aError == KErrSIPOutboundProxyNotResponding ||
aError == KErrSIPResolvingFailure ||
- aError == KErrTimedOut ||
aError == KErrSIPTransportFailure ||
- aError == KErrSIPICMPFailure &&
- iConnection.State() != CSIPConnection::ESuspended))
+ aError == KErrSIPICMPFailure ) &&
+ iConnection.State() != CSIPConnection::ESuspended)))
{
if ( iRetryCounterSum + 1 < KMaxRetryForOneAddress &&
iRetryCounter < KMaxRetryForOneAddress )
@@ -494,11 +494,11 @@
return (aError == K503ServiceUnavailable ||
aError == K408TimeOut ||
aError == K500ServerInternalError ||
- aError == KErrSIPOutboundProxyNotResponding ||
aError == KErrTimedOut ||
((aError == KErrSIPResolvingFailure ||
aError == KErrSIPTransportFailure ||
- aError == KErrSIPICMPFailure) &&
+ aError == KErrSIPICMPFailure ||
+ aError == KErrSIPOutboundProxyNotResponding ) &&
iConnection.State() != CSIPConnection::ESuspended));
}