Release 0.5.0

This commit is contained in:
Erik Ekman 2009-01-23 18:20:27 +00:00
parent 30a3bb9445
commit f41c4bb9f3
3 changed files with 5 additions and 7 deletions

View file

@ -5,11 +5,7 @@ iodine - http://code.kryo.se/iodine
CHANGES: CHANGES:
2009-01-17: 0.5.0-rc2 2009-01-23: 0.5.0 "iPassed"
- Fixed endless loop in fragment size autodetection, #39.
- Fixed broken hostname dot placing with specific lengths, #40.
2009-01-10: 0.5.0-rc1
- Fixed segfault in server when sending version reject. - Fixed segfault in server when sending version reject.
- Applied patch to make iodine build on BeOS R5-BONE and Haiku, - Applied patch to make iodine build on BeOS R5-BONE and Haiku,
from Francois Revol. Still work to do to get tun device working. from Francois Revol. Still work to do to get tun device working.
@ -29,6 +25,8 @@ CHANGES:
- Downstream data is now fragmented, and the fragment size is auto- - Downstream data is now fragmented, and the fragment size is auto-
probed after login. Fixes #7. It only took a few years :) probed after login. Fixes #7. It only took a few years :)
- Enhanced the checks that validates incoming packets - Enhanced the checks that validates incoming packets
- Fixed endless loop in fragment size autodetection, #39.
- Fixed broken hostname dot placing with specific lengths, #40.
2008-08-06: 0.4.2 "Opened Zone" 2008-08-06: 0.4.2 "Opened Zone"
- Applied a few small patches from Maxim Bourmistrov and Gregor Herrmann - Applied a few small patches from Maxim Bourmistrov and Gregor Herrmann

View file

@ -860,7 +860,7 @@ help() {
static void static void
version() { version() {
printf("iodine IP over DNS tunneling client\n"); printf("iodine IP over DNS tunneling client\n");
printf("version: 0.5.0-rc1 from 2009-01-10\n"); printf("version: 0.5.0 from 2009-01-23\n");
exit(0); exit(0);
} }

View file

@ -883,7 +883,7 @@ help() {
static void static void
version() { version() {
printf("iodine IP over DNS tunneling server\n"); printf("iodine IP over DNS tunneling server\n");
printf("version: 0.5.0-rc1 from 2009-01-10\n"); printf("version: 0.5.0 from 2009-01-23\n");
exit(0); exit(0);
} }