| 266 | } |
| 267 | |
| 268 | static void ld_send(struct plugin *plugin, struct json_stream *stream) |
| 269 | { |
| 270 | struct jstream *jstr = tal(plugin, struct jstream); |
| 271 | jstr->js = tal_steal(jstr, stream); |
| 272 | list_add_tail(&plugin->js_list, &jstr->list); |
| 273 | io_wake(plugin); |
| 274 | } |
| 275 | |
| 276 | static void ld_rpc_send(struct plugin *plugin, struct json_stream *stream) |
| 277 | { |
no test coverage detected