| 692 | } |
| 693 | |
| 694 | static struct io_plan *msg_setup(struct io_conn *conn, struct subd *sd) |
| 695 | { |
| 696 | return io_duplex(conn, |
| 697 | io_read_wire(conn, sd, &sd->msg_in, sd_msg_read, sd), |
| 698 | msg_send_next(conn, sd)); |
| 699 | } |
| 700 | |
| 701 | static bool debugging(struct lightningd *ld, const char *name) |
| 702 | { |
nothing calls this directly
no test coverage detected