[svn-commits] mmichelson: trunk r370801 - in /trunk: ./ channels/chan_sip.c

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


Author: mmichelson
Date: Mon Aug  6 10:18:18 2012
New Revision: 370801

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

Thanks to Paul Belanger for pointing this out.
........

Merged revisions 370797 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........

Merged revisions 370798 from http://svn.asterisk.org/svn/asterisk/branches/10

Modified:
    trunk/   (props changed)
    trunk/channels/chan_sip.c

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

Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=370801&r1=370800&r2=370801
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Aug  6 10:18:18 2012
@@ -3318,8 +3318,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