summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2012-01-12 16:10:47 +0000
committerJonathan Rose <jrose@digium.com>2012-01-12 16:10:47 +0000
commit19a976108479e82e6d6d9eadae2e7cc20a98a0ac (patch)
tree63f741f6403bdffa1039c2481ffc08b76ee3a4ba
parent9988918829c3fd00fc35074f94de12902ebf2052 (diff)
Adds peer to CEL report on CEL_BRIDGE_START and CEL_BRIDGE_END
(closes issue ASTERISK-17940) Reporter: Nic Colledge Patches: features_18.patch uploaded by Nic Colledge (license 6245) ........ Merged revisions 350501 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 350502 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@350503 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/features.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/features.c b/main/features.c
index 5f9e2857f..089ae2de5 100644
--- a/main/features.c
+++ b/main/features.c
@@ -4018,7 +4018,7 @@ int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer, struct a
* present. */
ast_clear_flag(bridge_cdr, AST_CDR_FLAG_DIALED);
}
- ast_cel_report_event(chan, AST_CEL_BRIDGE_START, NULL, NULL, NULL);
+ ast_cel_report_event(chan, AST_CEL_BRIDGE_START, NULL, NULL, peer);
/* If we are bridging a call, stop worrying about forwarding loops. We presume that if
* a call is being bridged, that the humans in charge know what they're doing. If they
@@ -4260,7 +4260,7 @@ int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer, struct a
if (f)
ast_frfree(f);
}
- ast_cel_report_event(chan, AST_CEL_BRIDGE_END, NULL, NULL, NULL);
+ ast_cel_report_event(chan, AST_CEL_BRIDGE_END, NULL, NULL, peer);
before_you_go:
/* Just in case something weird happened and we didn't clean up the silence generator... */