From e5bf1809386ceda4e004a52113313f4e4e3a5d6c Mon Sep 17 00:00:00 2001
From: William King <william.king@quentustech.com>
Date: Mon, 4 Feb 2013 12:10:14 -0600
Subject: [PATCH] Adding a radius_auth_result variable to a mod_xml_radius
 authenticated call for dialplan routing.

---
 src/mod/xml_int/mod_xml_radius/mod_xml_radius.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c b/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c
index a9b9a5ddaf..dc1c9fd6bd 100644
--- a/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c
+++ b/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c
@@ -768,6 +768,10 @@ switch_xml_t mod_xml_radius_auth_reg(switch_event_t *params) {
 	
 	switch_xml_set_attr_d(usr, "id", switch_event_get_header(params, "user"));
 		
+	var = switch_xml_add_child_d(vars, "variable", param_idx++);
+	switch_xml_set_attr_d(var, "name", "radius_auth_result");
+	switch_xml_set_attr_d(var, "value", "0");
+
 	service_vp = recv;
 	while (service_vp != NULL) {
 		rc_avpair_tostr(new_handle, service_vp, name, 512, value, 512);