Просмотр исходного кода

misc/examples: update comments

Дилян Палаузов 2 лет назад
Родитель
Сommit
49f42b36b5

+ 1 - 1
misc/examples/exec/exec_s5b.cfg

@@ -34,7 +34,7 @@ route{
 	};
 	# user found, forward to his current uri now; if any 
 	# forwarding error occurs (e.g., busy or cancelled recevied
-	# from downstream), proceed to reply_route[1]
+	# from downstream), proceed to failure_route[1]
 	t_on_failure("1");
 	if (!t_relay()) {
 		sl_reply_error();

+ 2 - 2
misc/examples/kamailio/fork.cfg

@@ -42,7 +42,7 @@ route{
 	# wait until timer hits
 	seturi("sip:[email protected]");
 	append_branch("sip:[email protected]:9");
-	# if we do not get a positive reply, continue at reply_route[1]
+	# if we do not get a positive reply, continue at failure_route[1]
 	t_on_failure("1");
 	# forward the request to all destinations in destination set now 
 	t_relay();
@@ -52,7 +52,7 @@ failure_route[1] {
 	# forwarding failed -- try again at another destination 
 	append_branch("sip:[email protected]");
 	log(1, "first redirection\n");
-	# if this alternative destination fails too, proceed to reply_route[2] 
+	# if this alternative destination fails too, proceed to failure_route[2]
 	t_on_failure("2");
 	t_relay();
 }

+ 1 - 2
misc/examples/kamailio/serial_183.cfg

@@ -41,8 +41,7 @@ route{
 		log(1, "forwarding now to primary destination\n");
 	if (method=="INVITE") {
 		rewriteuri("sip:[email protected]:5064");
-		# if transaction broken, try other an alternative
-		# route
+		# if transaction is broken, try an alternative route
 		t_on_failure("1");
 		# if a provisional came, stop alternating
 		t_on_reply("1");

+ 1 - 1
misc/examples/mixed/ccdiversion.cfg

@@ -9,7 +9,7 @@ loadmodule "modules/tm/tm.so"
 # ----------------- setting module-specific parameters ---------------
 
 route{
-	# if we do not get a positive reply, continue at reply_route[2]
+	# if we do not get a positive reply, continue at failure_route[2]
 	t_on_failure("2");
 	# forward the request to all destinations in destination set now 
 	t_relay();

+ 2 - 2
misc/examples/mixed/onr.cfg

@@ -38,7 +38,7 @@ route{
 	# wait until timer hits
 	seturi("sip:[email protected]");
 	append_branch("sip:[email protected]:9");
-	# if we do not get a positive reply, continue at reply_route[1]
+	# if we do not get a positive reply, continue at failure_route[1]
 	t_on_failure("1");
 	# forward the request to all destinations in destination set now 
 	t_relay();
@@ -48,7 +48,7 @@ failure_route[1] {
 	# forwarding failed -- try again at another destination 
 	append_branch("sip:[email protected]");
 	log(1, "first redirection\n");
-	# if this alternative destination fails too, proceed to reply_route[2] 
+	# if this alternative destination fails too, proceed to failure_route[2]
 	t_on_failure("2");
 	t_relay();
 }

+ 1 - 2
misc/examples/mixed/serial_183.cfg

@@ -38,8 +38,7 @@ route{
 		log(1, "forwarding now to primary destination\n");
 	if (method=="INVITE") {
 		rewriteuri("sip:[email protected]:5064");
-		# if transaction broken, try other an alternative
-		# route
+		# if transaction is broken, try an alternative route
 		t_on_failure("1");
 		# if a provisional came, stop alternating
 		t_on_reply("1");