mod_verto: add to login event id and domain values

This commit is contained in:
Antonio Silva 2020-05-05 01:17:16 +02:00
parent 770ed14f44
commit f6f0c86ae2
1 changed files with 6 additions and 0 deletions

View File

@ -882,6 +882,12 @@ static void login_fire_custom_event(jsock_t *jsock, cJSON *params, int success,
switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_sessid", cJSON_GetObjectCstr(params, "sessid")); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_sessid", cJSON_GetObjectCstr(params, "sessid"));
} }
} }
if (jsock->id) {
switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_id", jsock->id);
}
if (jsock->domain) {
switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_domain", jsock->domain);
}
switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "verto_success", "%d", success); switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "verto_success", "%d", success);
switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_result_txt", result_txt); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "verto_result_txt", result_txt);
switch_event_fire(&s_event); switch_event_fire(&s_event);