mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 02:19:18 +02:00
#78, print server tunnel ip
This commit is contained in:
parent
dfd74623a6
commit
bcd7c1c15c
|
@ -23,6 +23,7 @@ CHANGES:
|
|||
misc at mandriva.org. Fixes #70.
|
||||
- Allow password to be set via environment variable, fixes #77.
|
||||
Based on patch by logix.
|
||||
- Client now prints server tunnel IP, fixes #78. Patch by logix.
|
||||
|
||||
2009-06-01: 0.5.2 "WifiFree"
|
||||
- Fixed client segfault on OS X, #57
|
||||
|
|
|
@ -742,6 +742,8 @@ handshake_login(int dns_fd, int seed)
|
|||
client[64] = 0;
|
||||
if (tun_setip(client, netmask) == 0 &&
|
||||
tun_setmtu(mtu) == 0) {
|
||||
|
||||
fprintf(stderr, "Server tunnel IP is %s\n", server);
|
||||
return 0;
|
||||
} else {
|
||||
errx(4, "Failed to set IP and MTU");
|
||||
|
|
Loading…
Reference in New Issue