| 763 | } |
| 764 | |
| 765 | mi_response_t *mi_tm_reply_4(const mi_params_t *params, |
| 766 | struct mi_handler *async_hdl) |
| 767 | { |
| 768 | str new_headers; |
| 769 | str body; |
| 770 | |
| 771 | if (get_mi_string_param(params, "new_headers", |
| 772 | &new_headers.s, &new_headers.len) < 0) |
| 773 | return init_mi_param_error(); |
| 774 | if (get_mi_string_param(params, "body", &body.s, &body.len) < 0) |
| 775 | return init_mi_param_error(); |
| 776 | |
| 777 | return mi_tm_reply(params, &new_headers, &body); |
| 778 | } |
nothing calls this directly
no test coverage detected