[svn-commits] mmichelson: trunk r89441 - in /trunk: CHANGES channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Nov 19 17:24:36 CST 2007


Author: mmichelson
Date: Mon Nov 19 17:24:35 2007
New Revision: 89441

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89441
Log:
Changed the "busy-level" option in sip.conf to "busylevel" to be more parallel
with the SIPPEER() argument of the same name. The deprecation procedure is not
being used here since this is a trunk-only option.

(closes issue #11307, reported by pj, patched by me)


Modified:
    trunk/CHANGES
    trunk/channels/chan_sip.c

Modified: trunk/CHANGES
URL: http://svn.digium.com/view/asterisk/trunk/CHANGES?view=diff&rev=89441&r1=89440&r2=89441
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Mon Nov 19 17:24:35 2007
@@ -68,7 +68,7 @@
      since they where replaced by "mohsuggest" and "mohinterpret" in version 1.4
   * The "localmask" setting was removed in version 1.2 and the reminder about it
      being removed is now also removed.
-  * A new option "busy-level" for setting a level of calls where asterisk reports
+  * A new option "busylevel" for setting a level of calls where asterisk reports
      a device as busy, to separate it from call-limit. This value is also added
      to the SIP_PEER dialplan function.
   * A new realtime family called "sipregs" is now supported to store SIP registration

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=89441&r1=89440&r2=89441
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Nov 19 17:24:35 2007
@@ -17811,7 +17811,7 @@
 			peer->call_limit = atoi(v->value);
 			if (peer->call_limit < 0)
 				peer->call_limit = 0;
-		} else if (!strcasecmp(v->name, "busy-level")) {
+		} else if (!strcasecmp(v->name, "busylevel")) {
 			peer->busy_level = atoi(v->value);
 			if (peer->busy_level < 0)
 				peer->busy_level = 0;




More information about the svn-commits mailing list