[asterisk-commits] tilghman: trunk r269938 - in /trunk: CHANGES main/db.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jun 11 13:17:33 CDT 2010
Author: tilghman
Date: Fri Jun 11 13:17:28 2010
New Revision: 269938
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=269938
Log:
Add DBGetComplete event after a DBGetResponse.
(closes issue #16965)
Reported by: rrb3942
Patches:
DBGetComplete.patch uploaded by rrb3942 (license 1003)
Modified:
trunk/CHANGES
trunk/main/db.c
Modified: trunk/CHANGES
URL: http://svnview.digium.com/svn/asterisk/trunk/CHANGES?view=diff&rev=269938&r1=269937&r2=269938
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Fri Jun 11 13:17:28 2010
@@ -395,6 +395,8 @@
aoc event class.
* Added Advice-Of-Charge manager action, AOCMessage, for generating AOC-D and
AOC-E messages on a channel.
+ * A DBGetComplete event now follows a DBGetResponse, to make the DBGet action
+ conform more closely to similar events.
Channel Event Logging
---------------------
Modified: trunk/main/db.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/db.c?view=diff&rev=269938&r1=269937&r2=269938
==============================================================================
--- trunk/main/db.c (original)
+++ trunk/main/db.c Fri Jun 11 13:17:28 2010
@@ -661,6 +661,10 @@
"%s"
"\r\n",
family, key, tmp, idText);
+ astman_append(s, "Event: DBGetComplete\r\n"
+ "%s"
+ "\r\n",
+ idText);
}
return 0;
}
More information about the asterisk-commits
mailing list