mirror of
https://github.com/yarrick/iodine.git
synced 2025-04-07 11:07:03 +00:00
Iodine: Cleaned up
This commit is contained in:
parent
8b780dea5f
commit
7d3ad4cd11
1 changed files with 8 additions and 1 deletions
|
@ -1495,7 +1495,14 @@ handshake_version(int dns_fd, int *seed)
|
|||
userid_char = hex[userid & 15];
|
||||
userid_char2 = hex2[userid & 15];
|
||||
|
||||
fprintf(stderr, "Version ok, both using protocol v 0x%08x. You are user #%d\n", VERSION, userid);
|
||||
#ifdef LINUX
|
||||
if(_v6)
|
||||
fprintf(stderr, "Version ok, both using protocol v 0x%08x. You are user #%d\n", VERSION_V6, userid);
|
||||
else
|
||||
#endif
|
||||
fprintf(stderr, "Version ok, both using protocol v 0x%08x. You are user #%d\n", VERSION, userid);
|
||||
|
||||
|
||||
return 0;
|
||||
} else if (strncmp("VNAK", in, 4) == 0) {
|
||||
#ifdef LINUX
|
||||
|
|
Loading…
Add table
Reference in a new issue