| 752 | } |
| 753 | |
| 754 | mi_response_t *mi_tm_reply_3(const mi_params_t *params, |
| 755 | struct mi_handler *async_hdl) |
| 756 | { |
| 757 | str body; |
| 758 | |
| 759 | if (get_mi_string_param(params, "body", &body.s, &body.len) < 0) |
| 760 | return init_mi_param_error(); |
| 761 | |
| 762 | return mi_tm_reply(params, NULL, &body); |
| 763 | } |
| 764 | |
| 765 | mi_response_t *mi_tm_reply_4(const mi_params_t *params, |
| 766 | struct mi_handler *async_hdl) |
nothing calls this directly
no test coverage detected