From e8a6d2995e95e8b27aba9551c3da025e7b9bfa6d Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 15 Jan 2010 21:04:34 +0000 Subject: Add pickup event to AMI. Also, fix AMI documentation. (closes issue #16431) Reported by: syspert Patches: 20100112__issue16431.diff.txt uploaded by tilghman (license 14) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@240421 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_directed_pickup.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/app_directed_pickup.c') diff --git a/apps/app_directed_pickup.c b/apps/app_directed_pickup.c index bc25defe2..92e2938f4 100644 --- a/apps/app_directed_pickup.c +++ b/apps/app_directed_pickup.c @@ -40,6 +40,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/lock.h" #include "asterisk/app.h" #include "asterisk/features.h" +#include "asterisk/manager.h" #include "asterisk/callerid.h" #include "asterisk/cel.h" @@ -94,6 +95,7 @@ static int pickup_do(struct ast_channel *chan, struct ast_channel *target) { int res = 0; struct ast_party_connected_line connected_caller; + struct ast_channel *chans[2] = { chan, target }; ast_debug(1, "Call pickup on '%s' by '%s'\n", target->name, chan->name); ast_cel_report_event(target, AST_CEL_PICKUP, NULL, NULL, chan); @@ -128,6 +130,10 @@ static int pickup_do(struct ast_channel *chan, struct ast_channel *target) return -1; } + /* If you want UniqueIDs, set channelvars in manager.conf to CHANNEL(uniqueid) */ + ast_manager_event_multichan(EVENT_FLAG_CALL, "Pickup", 2, chans, + "Channel: %s\r\nTargetChannel: %s\r\n", chan->name, target->name); + return res; } -- cgit v1.2.3