mod_xml_cdr: add leg param to query string (XML-24)

This commit is contained in:
Michael Jerris 2010-04-26 02:11:46 -04:00
parent add3ded40a
commit c0a6abad73
1 changed files with 2 additions and 1 deletions

View File

@ -337,7 +337,8 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
switch_yield(globals.delay * 1000000);
}
destUrl = switch_mprintf("%s?uuid=%s", globals.urls[globals.url_index], switch_core_session_get_uuid(session));
destUrl = switch_mprintf("%s?uuid=%s&leg=%c", globals.urls[globals.url_index], switch_core_session_get_uuid(session),
is_b ? 'b' : 'a');
curl_easy_setopt(curl_handle, CURLOPT_URL, destUrl);
if (!strncasecmp(destUrl, "https", 5)) {