mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-16 12:53:17 +00:00
Changed texts
This commit is contained in:
parent
9c74eb09a7
commit
798bbb64db
|
@ -420,18 +420,18 @@ handshake(int dns_fd)
|
||||||
seed = payload;
|
seed = payload;
|
||||||
userid = in[8];
|
userid = in[8];
|
||||||
|
|
||||||
printf("Version ok, both running 0x%08x. You are user #%d\n", VERSION, userid);
|
printf("Version ok, both using protocol v 0x%08x. You are user #%d\n", VERSION, userid);
|
||||||
goto perform_login;
|
goto perform_login;
|
||||||
} else if (strncmp("VNAK", in, 4) == 0) {
|
} else if (strncmp("VNAK", in, 4) == 0) {
|
||||||
errx(1, "you run 0x%08x, server runs 0x%08x. giving up\n",
|
errx(1, "You use protocol v 0x%08x, server uses v 0x%08x. Giving up",
|
||||||
VERSION, payload);
|
VERSION, payload);
|
||||||
/* NOTREACHED */
|
/* NOTREACHED */
|
||||||
} else if (strncmp("VFUL", in, 4) == 0) {
|
} else if (strncmp("VFUL", in, 4) == 0) {
|
||||||
errx(1, "server full, all %d slots are taken. try again later\n", payload);
|
errx(1, "Server full, all %d slots are taken. Try again later", payload);
|
||||||
/* NOTREACHED */
|
/* NOTREACHED */
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
warnx("did not receive proper login challenge\n");
|
warnx("did not receive proper login challenge");
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Retrying version check...\n");
|
printf("Retrying version check...\n");
|
||||||
|
|
Loading…
Reference in a new issue