1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
2018.06.08 -- version 0.3.7
* fixed some off-by-one errors using snprintf
* add support for OpenSSL 1.1.0
(Thanks to Eneas U de Queiroz <cote2004-github@yahoo.com>)
2017.01.04 -- Version 0.3.6
* moved to GIT
* make build reproducible
* the return code after receiving a signal now correctly contains
the signal number which caused the shutdown.
2014.06.21 -- Version 0.3.5
* added support for libnettle as crypt library
* added an exception to the license which allows linking with OpenSSL
2014.06.08 -- Version 0.3.4
* fixed build issues for clang
* refactored the multi socket support
2010.02.16 -- Version 0.3.3
* added -v|--version option
* added prebuilt manpage to release tarball (less build deps)
* added multi socket support which allows simultanous usage
of IPv4 and IPv6 even on operating systems without V4_MAPPED
address support
2009.12.02 -- Version 0.3.2
* clenaups and improvements at configure and install target of Makefile
* manpage cleanups
* moved to new svn location
2009.11.08 -- Version 0.3.1
* switched to GPLv3 or higher
* improved script execution
* added signal handling without races
* all log_targets print time now too
2009.05.01 -- Version 0.3
* updated to new protocol specification (extended label and crypto role)
Mind that due this protocol changes this version is incompatible to older
version of anytun and uanytun
* the auth tag length can now be configured
* added extended logging support (syslog, file, stdout and stderr)
* changed -n|--ifconfig parameter to new behavior
tun and tap devices now use the same syntax
* improved tap device handling on OpenBSD
* fixed name resolution bug
* fixed ipv6 addrlen bug
* fixed packet length errors
* fixed device type detection bug
* dropping privileges is now possible wihtout chroot
* some code cleanup
2009.01.14 -- Version 0.2.1
* fixed bug which prevents the daemon from using the right cipher
key when using a key derivation rate other than 1
2009.01.11 -- Version 0.2
* added crypto support using libgcrypt or openssl
* added new passphrase option to generate master key and or salt
* cleaned up and improved build system
* some code cleanup
2008.12.31 -- Version 0.1
* Initial release.
* IPv4, IPv6 and Ethernet tunnel over UDP, without crypto.
* tested on Linux and OpenBSD
|