浏览代码

examples, modules: fix common typo [skip ci]

Mikko Lehto 8 年之前
父节点
当前提交
16bfd2deed

+ 1 - 1
etc/kamailio-basic.cfg

@@ -446,7 +446,7 @@ route[WITHINDLG] {
 			setflag(FLT_ACCFAILED); # ... even if the transaction fails
 		}
 		else if ( is_method("ACK") ) {
-			# ACK is forwarded statelessy
+			# ACK is forwarded statelessly
 			route(NATMANAGE);
 		}
 		else if ( is_method("NOTIFY") ) {

+ 1 - 1
etc/kamailio-oob.cfg

@@ -638,7 +638,7 @@ route[WITHINDLG] {
 			setflag(FLT_ACCFAILED); # ... even if the transaction fails
 		}
 		else if ( is_method("ACK") ) {
-			# ACK is forwarded statelessy
+			# ACK is forwarded statelessly
 			route(NATMANAGE);
 		}
 		else if ( is_method("NOTIFY") ) {

+ 1 - 1
etc/kamailio.cfg

@@ -597,7 +597,7 @@ route[WITHINDLG] {
 			setflag(FLT_ACC); # do accounting ...
 			setflag(FLT_ACCFAILED); # ... even if the transaction fails
 		} else if ( is_method("ACK") ) {
-			# ACK is forwarded statelessy
+			# ACK is forwarded statelessly
 			route(NATMANAGE);
 		} else if ( is_method("NOTIFY") ) {
 			# Add Record-Route for in-dialog NOTIFY as per RFC 6665.

+ 1 - 1
misc/examples/kemi/kamailio-basic-kemi-jsdt.js

@@ -174,7 +174,7 @@ function ksr_route_withindlg()
 			KSR.setflag(FLT_ACC); // do accounting ...
 			KSR.setflag(FLT_ACCFAILED); // ... even if the transaction fails
 		} else if (METHOD=="ACK") {
-			// ACK is forwarded statelessy
+			// ACK is forwarded statelessly
 			ksr_route_natmanage();
 		} else if (METHOD=="NOTIFY") {
 			// Add Record-Route for in-dialog NOTIFY as per RFC 6665.

+ 1 - 1
misc/examples/kemi/kamailio-basic-kemi-lua.lua

@@ -173,7 +173,7 @@ function ksr_route_withindlg()
 			KSR.setflag(FLT_ACC); -- do accounting ...
 			KSR.setflag(FLT_ACCFAILED); -- ... even if the transaction fails
 		elseif KSR.pv.get("$rm")=="ACK" then
-			-- ACK is forwarded statelessy
+			-- ACK is forwarded statelessly
 			ksr_route_natmanage();
 		elseif  KSR.pv.get("$rm")=="NOTIFY" then
 			-- Add Record-Route for in-dialog NOTIFY as per RFC 6665.

+ 1 - 1
misc/examples/kemi/kamailio-basic-kemi-native.cfg

@@ -137,7 +137,7 @@ route[WITHINDLG] {
 			setflag(FLT_ACCFAILED); # ... even if the transaction fails
 		}
 		else if ( is_method("ACK") ) {
-			# ACK is forwarded statelessy
+			# ACK is forwarded statelessly
 			route(NATMANAGE);
 		}
 		else if ( is_method("NOTIFY") ) {

+ 1 - 1
misc/examples/kemi/kamailio-basic-kemi-python.py

@@ -194,7 +194,7 @@ class kamailio:
                 # ... even if the transaction fails
                 KSR.setflag(FLT_ACCFAILED);
             elif KSR.pv.get("$rm")=="ACK" :
-                # ACK is forwarded statelessy
+                # ACK is forwarded statelessly
                 if self.ksr_route_natmanage(msg)==-255 :
                     return -255;
             elif KSR.pv.get("$rm")=="NOTIFY" :

+ 1 - 1
misc/examples/kemi/kamailio-basic-kemi-sqlang.sq

@@ -178,7 +178,7 @@ function ksr_route_withindlg()
 			KSR.setflag(FLAGS.FLT_ACC); // do accounting ...
 			KSR.setflag(FLAGS.FLT_ACCFAILED); // ... even if the transaction fails
 		} else if (METHOD=="ACK") {
-			// ACK is forwarded statelessy
+			// ACK is forwarded statelessly
 			ksr_route_natmanage();
 		} else if (METHOD=="NOTIFY") {
 			// Add Record-Route for in-dialog NOTIFY as per RFC 6665.

+ 1 - 1
src/modules/app_java/kamailio_java_folder/java-untested/Kamailio.java

@@ -258,7 +258,7 @@ public class Kamailio extends NativeMethods
 		    }
 		    else if (WrappedMethods.is_method("ACK"))
 		    {
-			// ACK is forwarded statelessy
+			// ACK is forwarded statelessly
 			CoreMethods.route("NATMANAGE");
 		    }
 		    else if (WrappedMethods.is_method("NOTIFY"))

+ 1 - 1
src/modules/cnxcc/example/kamailio-cnxcc.cfg

@@ -733,7 +733,7 @@ route[WITHINDLG] {
 				setflag(FLT_ACCFAILED); # ... even if the transaction fails
 			}
 			if ( is_method("ACK") ) {
-				# ACK is forwarded statelessy
+				# ACK is forwarded statelessly
 				route(NATMANAGE);
 			}
 			route(RELAY);

+ 1 - 1
src/modules/sl/doc/sl_functions.xml

@@ -112,7 +112,7 @@ sl_reply_error();
 		<function moreinfo="none">sl_forward _reply([ code, [ reason ] ])</function>
 		</title>
 		<para>
-		Forward statelessy the current received SIP reply, with the option to
+		Forward statelessly the current received SIP reply, with the option to
 		change the status code and reason text. The new code has to be in the same
 		class. The received reply is forwarded as well by core when the config
 		execution ended, unless it is dropped from config.

+ 4 - 4
src/modules/sl/sl.c

@@ -352,7 +352,7 @@ static int fixup_sl_reply(void** param, int param_no)
 }
 
 /**
- * @brief forward SIP reply statelessy with different code and reason text
+ * @brief forward SIP reply statelessly with different code and reason text
  */
 static int w_sl_forward_reply(sip_msg_t* msg, str* code, str* reason)
 {
@@ -445,7 +445,7 @@ restore:
 }
 
 /**
- * @brief forward SIP reply statelessy
+ * @brief forward SIP reply statelessly
  */
 static int w_sl_forward_reply0(sip_msg_t* msg, char* str1, char* str2)
 {
@@ -453,7 +453,7 @@ static int w_sl_forward_reply0(sip_msg_t* msg, char* str1, char* str2)
 }
 
 /**
- * @brief forward SIP reply statelessy with a new code
+ * @brief forward SIP reply statelessly with a new code
  */
 static int w_sl_forward_reply1(sip_msg_t* msg, char* str1, char* str2)
 {
@@ -466,7 +466,7 @@ static int w_sl_forward_reply1(sip_msg_t* msg, char* str1, char* str2)
 }
 
 /**
- * @brief forward SIP reply statelessy with new code and reason text
+ * @brief forward SIP reply statelessly with new code and reason text
  */
 static int w_sl_forward_reply2(sip_msg_t* msg, char* str1, char* str2)
 {