Command has completed writing, and we've written it all out to conn. */
| 994 | |
| 995 | /* Command has completed writing, and we've written it all out to conn. */ |
| 996 | static struct io_plan *stream_out_complete(struct io_conn *conn, |
| 997 | struct json_stream *js, |
| 998 | struct json_connection *jcon) |
| 999 | { |
| 1000 | jcon_remove_json_stream(jcon, js); |
| 1001 | tal_free(js); |
| 1002 | |
| 1003 | /* Wait for more output. */ |
| 1004 | return start_json_stream(conn, jcon); |
| 1005 | } |
| 1006 | |
| 1007 | static struct io_plan *read_json(struct io_conn *conn, |
| 1008 | struct json_connection *jcon) |
nothing calls this directly
no test coverage detected