mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Add new AMI and ARI events for connected line changes on a channel.
The AMI event is called NewConnectedLine and the ARI event is called ChannelConnectedLine. ASTERISK-24554 #close Reported by Matt Jordan Review: https://reviewboard.asterisk.org/r/4231 ........ Merged revisions 429064 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@429084 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -450,10 +450,38 @@ static struct ast_json *channel_callerid(
|
||||
"channel", json_channel);
|
||||
}
|
||||
|
||||
static struct ast_json *channel_connected_line(
|
||||
struct ast_channel_snapshot *old_snapshot,
|
||||
struct ast_channel_snapshot *new_snapshot,
|
||||
const struct timeval *tv)
|
||||
{
|
||||
struct ast_json *json_channel;
|
||||
|
||||
/* No ChannelConnectedLine event on cache clear or first event */
|
||||
if (!old_snapshot || !new_snapshot) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (ast_channel_snapshot_connected_line_equal(old_snapshot, new_snapshot)) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
json_channel = ast_channel_snapshot_to_json(new_snapshot, stasis_app_get_sanitizer());
|
||||
if (!json_channel) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return ast_json_pack("{s: s, s: o, s: o}",
|
||||
"type", "ChannelConnectedLine",
|
||||
"timestamp", ast_json_timeval(*tv, NULL),
|
||||
"channel", json_channel);
|
||||
}
|
||||
|
||||
static channel_snapshot_monitor channel_monitors[] = {
|
||||
channel_state,
|
||||
channel_dialplan,
|
||||
channel_callerid,
|
||||
channel_connected_line,
|
||||
};
|
||||
|
||||
static void sub_channel_update_handler(void *data,
|
||||
|
Reference in New Issue
Block a user