[asterisk-commits] oej: trunk r148474 - /trunk/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 13 10:56:33 CDT 2008
Author: oej
Date: Mon Oct 13 10:56:33 2008
New Revision: 148474
URL: http://svn.digium.com/view/asterisk?view=rev&rev=148474
Log:
- Doxygen formatting. (tss tss)
- Fixing language
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=148474&r1=148473&r2=148474
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Oct 13 10:56:33 2008
@@ -12952,11 +12952,11 @@
}
}
-/* this func is used with ao2_callback to unlink/delete all dialogs that
+/*! \brief this func is used with ao2_callback to unlink/delete all dialogs that
are marked needdestroy. It will return CMP_MATCH for candidates, and they
- will be unlinked */
-
-/* TODO: Implement a queue and instead of marking a dialog
+ will be unlinked
+
+ TODO: Implement a queue and instead of marking a dialog
to be destroyed, toss it into the queue. Have a separate
thread do the locking and destruction */
@@ -12990,7 +12990,7 @@
/* We absolutely cannot destroy the rtp struct while a bridge is active or we WILL crash */
if (dialog->rtp && ast_rtp_get_bridged(dialog->rtp)) {
- ast_debug(2, "Bridge still active. Delaying destroy of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
+ ast_debug(2, "Bridge still active. Delaying destruction of SIP dialog '%s' Method: %s\n", dialog->callid, sip_methods[dialog->method].text);
sip_pvt_unlock(dialog);
return 0;
}
More information about the asterisk-commits
mailing list