[svn-commits] mmichelson: branch 10 r370798 - in /branches/10: ./ channels/chan_sip.c

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


Author: mmichelson
Date: Mon Aug  6 10:02:04 2012
New Revision: 370798

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=370798
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

Modified:
    branches/10/   (props changed)
    branches/10/channels/chan_sip.c

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

Modified: branches/10/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/channels/chan_sip.c?view=diff&rev=370798&r1=370797&r2=370798
==============================================================================
--- branches/10/channels/chan_sip.c (original)
+++ branches/10/channels/chan_sip.c Mon Aug  6 10:02:04 2012
@@ -3198,8 +3198,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