[Freeswitch-svn] [commit] r10970 - freeswitch/trunk/src/mod/endpoints/mod_sofia

FreeSWITCH SVN brian at freeswitch.org
Sat Dec 27 08:56:58 PST 2008


Author: brian
Date: Sat Dec 27 11:56:58 2008
New Revision: 10970

Log:
register gateways from users after group changes.

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	Sat Dec 27 11:56:58 2008
@@ -1184,12 +1184,18 @@
 							  dname, profile->name);
 		}
 	}
-
+	
 	if (switch_true(parse)) {
-		switch_xml_t ut, gateways_tag;
-		for (ut = switch_xml_child(x_domain_tag, "user"); ut; ut = ut->next) {
-			if (((gateways_tag = switch_xml_child(ut, "gateways")))) {
-				parse_gateways(profile, gateways_tag);
+		switch_xml_t gts, gt, uts, ut, gateways_tag;
+		for (gts = switch_xml_child(x_domain_tag, "groups"); gts; gts = gts->next) {
+			for (gt = switch_xml_child(gts, "group"); gt; gt = gt->next) {
+				for (uts = switch_xml_child(gt, "users"); uts; uts = uts->next) {
+					for (ut = switch_xml_child(uts, "user"); ut; ut = ut->next) {
+						if (((gateways_tag = switch_xml_child(ut, "gateways")))) {
+							parse_gateways(profile, gateways_tag);
+						}
+					}
+				}
 			}
 		}
 	}



More information about the Freeswitch-svn mailing list