[asterisk-commits] pabelanger: trunk r334517 - in /trunk: ./ channels/ configs/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 6 11:08:16 CDT 2011


Author: pabelanger
Date: Tue Sep  6 11:08:10 2011
New Revision: 334517

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=334517
Log:
Merged revisions 334514 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/10

........
  r334514 | pabelanger | 2011-09-06 11:47:59 -0400 (Tue, 06 Sep 2011) | 6 lines
  
  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:
    trunk/   (props changed)
    trunk/CHANGES
    trunk/channels/chan_iax2.c
    trunk/configs/iax.conf.sample

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.

Modified: trunk/CHANGES
URL: http://svnview.digium.com/svn/asterisk/trunk/CHANGES?view=diff&rev=334517&r1=334516&r2=334517
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Tue Sep  6 11:08:10 2011
@@ -235,6 +235,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: trunk/channels/chan_iax2.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=334517&r1=334516&r2=334517
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Tue Sep  6 11:08:10 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: trunk/configs/iax.conf.sample
URL: http://svnview.digium.com/svn/asterisk/trunk/configs/iax.conf.sample?view=diff&rev=334517&r1=334516&r2=334517
==============================================================================
--- trunk/configs/iax.conf.sample (original)
+++ trunk/configs/iax.conf.sample Tue Sep  6 11:08:10 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