| 133 | } |
| 134 | |
| 135 | static void ld_send(struct plugin *plugin, struct json_stream *stream) |
| 136 | { |
| 137 | struct jstream *jstr = tal(plugin, struct jstream); |
| 138 | jstr->js = tal_steal(jstr, stream); |
| 139 | list_add_tail(&plugin->js_list, &jstr->list); |
| 140 | io_wake(plugin); |
| 141 | } |
| 142 | |
| 143 | static void ld_rpc_send(struct plugin *plugin, struct json_stream *stream) |
| 144 | { |
no test coverage detected