[svn-commits] trunk r33109 - /trunk/channels/chan_sip.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu Jun 8 13:06:04 MST 2006
Author: oej
Date: Thu Jun 8 15:06:04 2006
New Revision: 33109
URL: http://svn.digium.com/view/asterisk?rev=33109&view=rev
Log:
Improve SIP history
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=33109&r1=33108&r2=33109&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Jun 8 15:06:04 2006
@@ -1697,7 +1697,7 @@
if (option_debug)
ast_log(LOG_DEBUG, "Auto destroying call '%s'\n", p->callid);
- append_history(p, "AutoDestroy", "");
+ append_history(p, "AutoDestroy", "%s", p->callid);
if (p->owner) {
ast_log(LOG_WARNING, "Autodestruct on dialog '%s' with owner in place (Method: %s)\n", p->callid, sip_methods[p->method].text);
ast_queue_hangup(p->owner);
@@ -11889,6 +11889,7 @@
copy_request(&p->initreq, req);
if (debug)
ast_verbose("Using INVITE request as basis request - %s\n", p->callid);
+ append_history(p, "Invite", "New call: %s", p->callid);
parse_ok_contact(p, req);
} else { /* Re-invite on existing call */
/* Handle SDP here if we already have an owner */
More information about the svn-commits
mailing list