diff --git a/CHANGELOG b/CHANGELOG index af5d070..3c27968 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/src/client.c b/src/client.c index bd516cf..6585d4c 100644 --- a/src/client.c +++ b/src/client.c @@ -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");