Create branch iodine-0.6

This commit is contained in:
Erik Ekman 2010-02-13 14:37:09 +00:00
commit bb872708d1
3 changed files with 9 additions and 3 deletions

View File

@ -5,7 +5,7 @@ iodine - http://code.kryo.se/iodine
CHANGES:
2010-02-13: 0.6.0-rc1 "Hotspotify"
20xx-xx-xx: x.y.z "Hotspotify"
- Fixed tunnel not working on Windows.
- Any device name is now supported on Windows, fixes #47.
- Multiple installed TAP32 interfaces are now supported, fixes #46.

View File

@ -101,8 +101,12 @@ help() {
static void
version() {
char *svnver;
svnver = "$Rev$ from $Date$";
fprintf(stderr, "iodine IP over DNS tunneling client\n");
fprintf(stderr, "version: 0.6.0-rc1 from 2010-02-13\n");
fprintf(stderr, "SVN version: %s\n", svnver);
exit(0);
}

View File

@ -2164,8 +2164,10 @@ help() {
static void
version() {
char *svnver;
svnver = "$Rev$ from $Date$";
fprintf(stderr, "iodine IP over DNS tunneling server\n");
fprintf(stderr, "version: 0.6.0-rc1 from 2010-02-13\n");
fprintf(stderr, "SVN version: %s\n", svnver);
exit(0);
}