Releasing 1.1pre10.
This commit is contained in:
parent
cb5c1b5986
commit
173072ff07
3 changed files with 35 additions and 8 deletions
29
NEWS
29
NEWS
|
@ -1,3 +1,32 @@
|
||||||
|
Version 1.1pre10 February 7 2014
|
||||||
|
|
||||||
|
* Added a benchmark tool (sptps_speed) for the new protocol.
|
||||||
|
|
||||||
|
* Fixed a crash when using Name = $HOST while $HOST is not set.
|
||||||
|
|
||||||
|
* Use AES-256-GCM for the new protocol.
|
||||||
|
|
||||||
|
* Updated support for Solaris.
|
||||||
|
|
||||||
|
* Allow running tincd without a private ECDSA key present when
|
||||||
|
ExperimentalProtocol is not explicitly set.
|
||||||
|
|
||||||
|
* Enable various compiler hardening flags by default.
|
||||||
|
|
||||||
|
* Added support for a "conf.d" configuration directory.
|
||||||
|
|
||||||
|
* Fix tinc-gui on Windows, also allowing it to connect to a 32-bits tincd when
|
||||||
|
tinc-gui is run in a 64-bits Python environment.
|
||||||
|
|
||||||
|
* Added a "ListenAddress" option, which like BindToAddress adds more listening
|
||||||
|
address/ports, but doesn't bind to them for outgoing sockets.
|
||||||
|
|
||||||
|
* Make invitations work better when the "invite" and "join" commands are not
|
||||||
|
run interactively.
|
||||||
|
|
||||||
|
* When creating meta-connections to a node for which no Address statement is
|
||||||
|
specified, try to use addresses learned from other nodes.
|
||||||
|
|
||||||
Version 1.1pre9 September 8 2013
|
Version 1.1pre9 September 8 2013
|
||||||
|
|
||||||
* The UNIX socket is now created before tinc-up is called.
|
* The UNIX socket is now created before tinc-up is called.
|
||||||
|
|
11
README
11
README
|
@ -1,7 +1,7 @@
|
||||||
This is the README file for tinc version 1.1pre9. Installation
|
This is the README file for tinc version 1.1pre10. Installation
|
||||||
instructions may be found in the INSTALL file.
|
instructions may be found in the INSTALL file.
|
||||||
|
|
||||||
tinc is Copyright (C) 1998-2013 by:
|
tinc is Copyright (C) 1998-2014 by:
|
||||||
|
|
||||||
Ivo Timmermans,
|
Ivo Timmermans,
|
||||||
Guus Sliepen <guus@tinc-vpn.org>,
|
Guus Sliepen <guus@tinc-vpn.org>,
|
||||||
|
@ -36,12 +36,11 @@ at your own risk.
|
||||||
Compatibility
|
Compatibility
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Version 1.1pre9 is compatible with 1.0pre8, 1.0 and later, but not with older
|
Version 1.1pre10 is compatible with 1.0pre8, 1.0 and later, but not with older
|
||||||
versions of tinc.
|
versions of tinc.
|
||||||
|
|
||||||
When the ExperimentalProtocol option is used, which is the default since
|
When the ExperimentalProtocol option is used, tinc is still compatible with
|
||||||
1.1pre8, tinc is still compatible with 1.0.X and 1.1pre9 itself, but not with
|
1.0.X and 1.1pre10 itself, but not with any other 1.1preX version.
|
||||||
any other 1.1preX version.
|
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ(2.61)
|
AC_PREREQ(2.61)
|
||||||
AC_INIT([tinc], [1.1pre9])
|
AC_INIT([tinc], [1.1pre10])
|
||||||
AC_CONFIG_SRCDIR([src/tincd.c])
|
AC_CONFIG_SRCDIR([src/tincd.c])
|
||||||
AC_GNU_SOURCE
|
AC_GNU_SOURCE
|
||||||
AM_INIT_AUTOMAKE([check-news std-options subdir-objects -Wall])
|
AM_INIT_AUTOMAKE([check-news std-options subdir-objects -Wall])
|
||||||
|
@ -18,7 +18,6 @@ AC_PROG_CC_C99
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
AC_PROG_RANLIB
|
|
||||||
|
|
||||||
AM_PROG_CC_C_O
|
AM_PROG_CC_C_O
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue