| 962 | struct plugin *plugin); |
| 963 | |
| 964 | static struct io_plan * |
| 965 | rpc_stream_complete(struct io_conn *conn, struct json_stream *js, |
| 966 | struct plugin *plugin) |
| 967 | { |
| 968 | struct jstream *jstr = list_pop(&plugin->rpc_js_list, struct jstream, list); |
| 969 | assert(jstr); |
| 970 | assert(jstr->js == js); |
| 971 | tal_free(jstr); |
| 972 | |
| 973 | return rpc_conn_write_request(conn, plugin); |
| 974 | } |
| 975 | |
| 976 | static struct io_plan *rpc_conn_write_request(struct io_conn *conn, |
| 977 | struct plugin *plugin) |
nothing calls this directly
no test coverage detected