| 231 | } |
| 232 | |
| 233 | static struct command_result *do_check_lost_peer(struct command *cmd, void *unused) |
| 234 | { |
| 235 | |
| 236 | /* Set to NULL when already in progress. */ |
| 237 | lost_state_timer = NULL; |
| 238 | |
| 239 | if (recovery) { |
| 240 | return timer_complete(cmd); |
| 241 | } |
| 242 | |
| 243 | return check_lost_peer(cmd); |
| 244 | } |
| 245 | |
| 246 | static const char *init(struct command *init_cmd, |
| 247 | const char *buf UNUSED, |
nothing calls this directly
no test coverage detected