[asterisk-commits] pabelanger: branch 10 r334514 - in /branches/10: ./ channels/ configs/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 6 10:48:06 CDT 2011


Author: pabelanger
Date: Tue Sep  6 10:47:59 2011
New Revision: 334514

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=334514
Log:
authdebug is now disabled by default

To enable this functionaility again set authdebug = yes in iax.conf

Review: https://reviewboard.asterisk.org/r/1414/

Modified:
    branches/10/CHANGES
    branches/10/channels/chan_iax2.c
    branches/10/configs/iax.conf.sample

Modified: branches/10/CHANGES
URL: http://svnview.digium.com/svn/asterisk/branches/10/CHANGES?view=diff&rev=334514&r1=334513&r2=334514
==============================================================================
--- branches/10/CHANGES (original)
+++ branches/10/CHANGES Tue Sep  6 10:47:59 2011
@@ -213,6 +213,11 @@
 ----------------
  * Modules marked as deprecated are no longer marked as building by default. Enabling
    these modules is still available via menuselect.
+
+IAX2 Changes
+------------
+* authdebug is now disabled by default. To enable this functionaility again
+   set authdebug = yes in iax.conf.
 
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 1.6.2 to Asterisk 1.8 ----------------

Modified: branches/10/channels/chan_iax2.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/channels/chan_iax2.c?view=diff&rev=334514&r1=334513&r2=334514
==============================================================================
--- branches/10/channels/chan_iax2.c (original)
+++ branches/10/channels/chan_iax2.c Tue Sep  6 10:47:59 2011
@@ -287,7 +287,7 @@
 static int trunkfreq = 20;
 static int trunkmaxsize = MAX_TRUNKDATA;
 
-static int authdebug = 1;
+static int authdebug = 0;
 static int autokill = 0;
 static int iaxcompat = 0;
 static int last_authmethod = 0;

Modified: branches/10/configs/iax.conf.sample
URL: http://svnview.digium.com/svn/asterisk/branches/10/configs/iax.conf.sample?view=diff&rev=334514&r1=334513&r2=334514
==============================================================================
--- branches/10/configs/iax.conf.sample (original)
+++ branches/10/configs/iax.conf.sample Tue Sep  6 10:47:59 2011
@@ -254,10 +254,10 @@
 ;
 ; subscribe_network_change_event = yes ; on by default
 ;
-; You can disable authentication debugging to reduce the amount of
+; You can enable authentication debugging to increase the amount of
 ; debugging traffic.
 ;
-;authdebug=no
+;authdebug = yes
 ;
 ; See https://wiki.asterisk.org/wiki/display/AST/IP+Quality+of+Service for a description of these parameters.
 ;tos=ef




More information about the asterisk-commits mailing list