| 1413 | struct plugin *plugin); |
| 1414 | |
| 1415 | static struct io_plan * |
| 1416 | rpc_stream_complete(struct io_conn *conn, struct json_stream *js, |
| 1417 | struct plugin *plugin) |
| 1418 | { |
| 1419 | struct jstream *jstr = list_pop(&plugin->rpc_js_list, struct jstream, list); |
| 1420 | assert(jstr); |
| 1421 | assert(jstr->js == js); |
| 1422 | tal_free(jstr); |
| 1423 | |
| 1424 | return rpc_conn_write_request(conn, plugin); |
| 1425 | } |
| 1426 | |
| 1427 | static struct io_plan *rpc_conn_write_request(struct io_conn *conn, |
| 1428 | struct plugin *plugin) |
nothing calls this directly
no test coverage detected