From 6145a57c8304e6188d58d821b48cd185f55f7748 Mon Sep 17 00:00:00 2001
From: Kinsey Moore <kmoore@digium.com>
Date: Thu, 26 Jun 2014 14:48:21 +0000
Subject: [PATCH] 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
---
 main/cel.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

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;
 	}
-- 
GitLab