| 740 | } |
| 741 | |
| 742 | mi_response_t *mi_tm_reply_2(const mi_params_t *params, |
| 743 | struct mi_handler *async_hdl) |
| 744 | { |
| 745 | str new_headers; |
| 746 | |
| 747 | if (get_mi_string_param(params, "new_headers", |
| 748 | &new_headers.s, &new_headers.len) < 0) |
| 749 | return init_mi_param_error(); |
| 750 | |
| 751 | return mi_tm_reply(params, &new_headers, NULL); |
| 752 | } |
| 753 | |
| 754 | mi_response_t *mi_tm_reply_3(const mi_params_t *params, |
| 755 | struct mi_handler *async_hdl) |
nothing calls this directly
no test coverage detected