From: Kinsey Moore Date: Thu, 26 Jun 2014 14:48:21 +0000 (+0000) Subject: CEL: Add bridge tech to relevant CEL records X-Git-Tag: 13.0.0-beta1~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6145a57c8304e6188d58d821b48cd185f55f7748;p=thirdparty%2Fasterisk.git CEL: Add bridge tech to relevant CEL records Add the "bridge_technology" extra field key to BRIDGE_ENTER and BRIDGE_EXIT CEL events to convey the bridge technology in use at the time the record was generated. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@417383 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/cel.c b/main/cel.c index c7f4fc3665..57fb946a40 100644 --- a/main/cel.c +++ b/main/cel.c @@ -1167,7 +1167,9 @@ static void cel_bridge_enter_cb( return; } - extra = ast_json_pack("{s: s}", "bridge_id", snapshot->uniqueid); + extra = ast_json_pack("{s: s, s: s}", + "bridge_id", snapshot->uniqueid, + "bridge_technology", snapshot->technology); if (!extra) { return; } @@ -1194,7 +1196,9 @@ static void cel_bridge_leave_cb( return; } - extra = ast_json_pack("{s: s}", "bridge_id", snapshot->uniqueid); + extra = ast_json_pack("{s: s, s: s}", + "bridge_id", snapshot->uniqueid, + "bridge_technology", snapshot->technology); if (!extra) { return; }