| 847 | } |
| 848 | |
| 849 | static struct command_result *connect_failed(struct command *command, |
| 850 | const char *buf, |
| 851 | const jsmntok_t *result, |
| 852 | struct connect_attempt *ca) |
| 853 | { |
| 854 | return command_done_err(command, OFFER_ROUTE_NOT_FOUND, |
| 855 | "Failed: could not route, could not connect", |
| 856 | NULL); |
| 857 | } |
| 858 | |
| 859 | /* Offers contain only a 32-byte id. If we can't find the address, we |
| 860 | * don't know if it's 02 or 03, so we try both. If we're here, we |
nothing calls this directly
no test coverage detected