[svn-commits] dvossel: trunk r175127 - /trunk/channels/chan_iax2.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Feb 12 11:07:17 CST 2009
Author: dvossel
Date: Thu Feb 12 11:07:17 2009
New Revision: 175127
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=175127
Log:
Setting key rotation to be off by default
Key rotation breaks compatibility between (trunk/1.6.1) and (1.2/1.4/1.6.0). As a follow up to this, I am investigating possible ways to allow key rotation to be on by default and not affect the other branches, but for now it must be turned off.
Modified:
trunk/channels/chan_iax2.c
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=175127&r1=175126&r2=175127
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Thu Feb 12 11:07:17 2009
@@ -11238,7 +11238,7 @@
/* Reset Global Flags */
memset(&globalflags, 0, sizeof(globalflags));
ast_set_flag(&globalflags, IAX_RTUPDATE);
-
+ ast_set_flag(&globalflags, IAX_NOKEYROTATE); /* turn off key rotate by default since it breaks backwards compatibility at the moment. */
#ifdef SO_NO_CHECK
nochecksums = 0;
#endif
More information about the svn-commits
mailing list