| 867 | } |
| 868 | |
| 869 | struct io_plan *plugin_stdout_conn_init(struct io_conn *conn, |
| 870 | struct plugin *plugin) |
| 871 | { |
| 872 | /* We read from their stdout */ |
| 873 | plugin->stdout_conn = conn; |
| 874 | io_set_finish(conn, plugin_conn_finish, plugin); |
| 875 | return plugin_read_json(conn, plugin); |
| 876 | } |
| 877 | |
| 878 | static char *plugin_opt_check(struct plugin_opt *popt) |
| 879 | { |
nothing calls this directly
no test coverage detected