| 27 | } |
| 28 | |
| 29 | static struct connect *new_connect(struct lightningd *ld, |
| 30 | const struct node_id *id, |
| 31 | struct command *cmd) |
| 32 | { |
| 33 | struct connect *c = tal(cmd, struct connect); |
| 34 | c->id = *id; |
| 35 | c->cmd = cmd; |
| 36 | list_add_tail(&ld->connects, &c->list); |
| 37 | tal_add_destructor(c, destroy_connect); |
| 38 | return c; |
| 39 | } |
| 40 | |
| 41 | /* Finds first command which matches. */ |
| 42 | static struct connect *find_connect(struct lightningd *ld, |