forked from Mirrors/freeswitch
Merge pull request #29 in FS/freeswitch from ~ITALOROSSI/freeswitch:bugfix/FS-5522-add-switchname-xml-json-cdr to master
* commit 'd55505ce2a713a409a2a2d37f34893f7d1ccaf4f': Adding switchname to xml_cdr and json_cdr
This commit is contained in:
commit
e627422f3d
@ -2308,6 +2308,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_generate_xml_cdr(switch_core_session_
|
||||
}
|
||||
|
||||
switch_xml_set_attr_d(cdr, "core-uuid", switch_core_get_uuid());
|
||||
switch_xml_set_attr_d(cdr, "switchname", switch_core_get_switchname());
|
||||
|
||||
if (!(x_channel_data = switch_xml_add_child_d(cdr, "channel_data", cdr_off++))) {
|
||||
goto error;
|
||||
@ -2681,7 +2682,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_generate_json_cdr(switch_core_session
|
||||
char tmp[512], *f;
|
||||
|
||||
cJSON_AddItemToObject(cdr, "core-uuid", cJSON_CreateString(switch_core_get_uuid()));
|
||||
|
||||
cJSON_AddItemToObject(cdr, "switchname", cJSON_CreateString(switch_core_get_switchname()));
|
||||
j_channel_data = cJSON_CreateObject();
|
||||
|
||||
cJSON_AddItemToObject(cdr, "channel_data", j_channel_data);
|
||||
|
Loading…
Reference in New Issue
Block a user