Merge PR #32: client: warn when handshake fails due to BADIP

Shortened the message, the timeout only applies when tunnel is up.
This commit is contained in:
Erik Ekman 2019-08-04 13:53:43 +02:00
commit 67643ee996

View File

@ -1439,6 +1439,9 @@ handshake_login(int dns_fd, int seed)
if (strncmp("LNAK", in, 4) == 0) {
fprintf(stderr, "Bad password\n");
return 1;
} else if (strncmp("BADIP", in, 5) == 0) {
warnx("BADIP: Server rejected sender IP address (maybe iodined -c will help)");
return 1;
} else if (sscanf(in, "%64[^-]-%64[^-]-%d-%d",
server, client, &mtu, &netmask) == 4) {