1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 13:53:34 +03:00

client: warn when handshake fails due to BADIP

other parts of the code show the meaningful error message too, but
not at the spot where it happened for me.
This commit is contained in:
rofl0r 2018-12-29 05:25:11 +00:00
parent 27e5d6fadd
commit fc11f805c0

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), or server kicked us due to timeout. Will exit if no downstream data is received in 60 seconds.");
return 1;
} else if (sscanf(in, "%64[^-]-%64[^-]-%d-%d",
server, client, &mtu, &netmask) == 4) {