{
RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(global_config), ao2_cleanup);
struct ast_str *response = NULL;
+ struct ast_str *content_type_header = NULL;
struct timeval start;
struct timeval end;
}
response = ast_str_create(512);
- if (!response) {
+ content_type_header = ast_str_create(32);
+ if (!response || !content_type_header) {
goto err500;
}
+ ast_str_set(&content_type_header, 0, "Content-Type: text/plain\r\n");
+
start = ast_tvnow();
ast_mutex_lock(&scrape_lock);
}
ast_mutex_unlock(&scrape_lock);
- ast_http_send(ser, method, 200, "OK", NULL, response, 0, 0);
+ ast_http_send(ser, method, 200, "OK", content_type_header, response, 0, 0);
return 0;
ast_http_send(ser, method, 401, "Unauthorized", auth_challenge_headers, NULL, 0, 1);
}
ast_free(response);
+ ast_free(content_type_header);
return 0;
err503:
ast_http_send(ser, method, 503, "Service Unavailable", NULL, NULL, 0, 1);
ast_free(response);
+ ast_free(content_type_header);
return 0;
err500:
ast_http_send(ser, method, 500, "Server Error", NULL, NULL, 0, 1);
ast_free(response);
+ ast_free(content_type_header);
return 0;
}