[asterisk-commits] oej: branch oej/teapot-1.8 r412071 - /team/oej/teapot-1.8/channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Apr 10 10:37:21 CDT 2014


Author: oej
Date: Thu Apr 10 10:37:11 2014
New Revision: 412071

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=412071
Log:
Activating silence detection on early media caused all sorts of bad effects, including TCP connections 
dying and a local channel getting exceptionally long queues. Why this happened is a mystery to me.
The audiohook never even gets called.

Modified:
    team/oej/teapot-1.8/channels/chan_sip.c

Modified: team/oej/teapot-1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/oej/teapot-1.8/channels/chan_sip.c?view=diff&rev=412071&r1=412070&r2=412071
==============================================================================
--- team/oej/teapot-1.8/channels/chan_sip.c (original)
+++ team/oej/teapot-1.8/channels/chan_sip.c Thu Apr 10 10:37:11 2014
@@ -21224,7 +21224,7 @@
 			}
 			ast_rtp_instance_activate(p->rtp);
 			/* If we've agreed on CN for this channel, try activating silence detection and suppression on it */
-			activate_silence_detection(p);
+			//activate_silence_detection(p);
 		} else {
 			/* Alcatel PBXs are known to send 183s with no SDP after sending
 			 * a 100 Trying response. We're just going to treat this sort of thing




More information about the asterisk-commits mailing list