| 2195 | } |
| 2196 | |
| 2197 | static void |
| 2198 | plugin_config(struct plugin *plugin) |
| 2199 | { |
| 2200 | struct jsonrpc_request *req; |
| 2201 | |
| 2202 | plugin_set_timeout(plugin); |
| 2203 | req = jsonrpc_request_start(plugin, "init", NULL, |
| 2204 | plugin->log, NULL, plugin_config_cb, plugin); |
| 2205 | plugin_populate_init_request(plugin, req); |
| 2206 | jsonrpc_request_end(req); |
| 2207 | plugin_request_send(plugin, req); |
| 2208 | plugin->plugin_state = AWAITING_INIT_RESPONSE; |
| 2209 | } |
| 2210 | |
| 2211 | bool plugins_config(struct plugins *plugins) |
| 2212 | { |
no test coverage detected