From 2fe32315225d56862a9b8b7e62257a1126060c6f Mon Sep 17 00:00:00 2001
From: smorlat <smorlat@3f6dc0c8-ddfe-455d-9043-3cd528dc4637>
Date: Thu, 17 Dec 2009 16:10:19 +0000
Subject: [PATCH] change a bit the way Registration failures are notified.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@791 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
---
 linphone/coreapi/authentication.c | 4 +++-
 linphone/coreapi/proxy.c          | 3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/linphone/coreapi/authentication.c b/linphone/coreapi/authentication.c
index 59d8f43b3f..ee360ecfe0 100644
--- a/linphone/coreapi/authentication.c
+++ b/linphone/coreapi/authentication.c
@@ -362,10 +362,12 @@ void linphone_process_authentication(LinphoneCore *lc, eXosip_event_t *ev)
 	osip_www_authenticate_t *www_auth;
 	osip_message_t *resp=ev->response;
 	char *username;
-	
+
+	/*
 	if (strcmp(ev->request->sip_method,"REGISTER")==0) {
 		gstate_new_state(lc, GSTATE_REG_FAILED, "Authentication required");
 	}
+	*/
 
 	username=osip_uri_get_username(resp->from->url);
 	prx_auth=(osip_proxy_authenticate_t*)osip_list_get(&resp->proxy_authenticates,0);
diff --git a/linphone/coreapi/proxy.c b/linphone/coreapi/proxy.c
index 28975b2231..75e918f62c 100644
--- a/linphone/coreapi/proxy.c
+++ b/linphone/coreapi/proxy.c
@@ -624,6 +624,9 @@ void linphone_proxy_config_process_authentication_failure(LinphoneCore *lc, eXos
 	LinphoneProxyConfig *cfg=linphone_core_get_proxy_config_from_rid(lc, ev->rid);
 	if (cfg){
 		cfg->auth_failures++;
+		if (strcmp(ev->request->sip_method,"REGISTER")==0) {
+			gstate_new_state(lc, GSTATE_REG_FAILED, "Authentication failed.");
+		}
 		/*restart a new register so that the user gets a chance to be prompted for a password*/
 		if (cfg->auth_failures==1){
 			linphone_proxy_config_register(cfg);
-- 
GitLab