summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2008-10-13 15:56:33 +0000
committerOlle Johansson <oej@edvina.net>2008-10-13 15:56:33 +0000
commitc3e6dbb72fd01b8f7675d5d96c78486188984cb0 (patch)
tree661e95523f2acd3fba43f6693cbbfc77bcac8e43 /channels
parent32d93bbc0e4128606c7be3eb91357a0b338c1985 (diff)
- Doxygen formatting. (tss tss)
- Fixing language git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@148474 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 8e4b5c2e0..cd1716324 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -12952,11 +12952,11 @@ static void cleanup_stale_contexts(char *new, char *old)
}
}
-/* 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 */
+ will be unlinked
-/* TODO: Implement a queue and instead of marking a dialog
+ 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 @@ static int dialog_needdestroy(void *dialogobj, void *arg, int flags)
/* 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;
}