[svn-commits] mmichelson: branch 1.8 r370797 - /branches/1.8/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Aug 6 10:00:14 CDT 2012


Author: mmichelson
Date: Mon Aug  6 10:00:08 2012
New Revision: 370797

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=370797
Log:
Improve debug message for temporary outbound proxies.

Thanks to Paul Belanger for pointing this out.


Modified:
    branches/1.8/channels/chan_sip.c

Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=370797&r1=370796&r2=370797
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Mon Aug  6 10:00:08 2012
@@ -3176,8 +3176,9 @@
 {
 	if (dialog && dialog->options && dialog->options->outboundproxy) {
 		if (sipdebug) {
-			ast_debug(1, "BLAH\n");
-		}
+			ast_debug(1, "OBPROXY: Applying dialplan set OBproxy to this call\n");
+		}
+		append_history(dialog, "OBproxy", "Using dialplan obproxy %s", dialog->options->outboundproxy->name);
 		return dialog->options->outboundproxy;
 	}
 	if (peer && peer->outboundproxy) {




More information about the svn-commits mailing list