summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2014-12-08 16:24:36 +0000
committerMark Michelson <mmichelson@digium.com>2014-12-08 16:24:36 +0000
commitfe7671fee69b0ce1a6120a9ccb6664c5f31d37d3 (patch)
tree108d125bf0ea17e17cfb63bf5d7d89756eb30f7e /main/channel.c
parent4bb556a8478741dc81361327d3a50a8809be09f6 (diff)
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
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/channel.c b/main/channel.c
index 6bd253174..4bf2f61ef 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -7960,6 +7960,7 @@ void ast_channel_set_connected_line(struct ast_channel *chan, const struct ast_p
ast_channel_lock(chan);
ast_party_connected_line_set(ast_channel_connected(chan), connected, update);
+ ast_channel_publish_snapshot(chan);
ast_channel_unlock(chan);
}