Browse code

Version 2.1_rc15

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3525 e7ae566f-a301-0410-adde-c780ea21d3b5

james authored on 2008/11/20 03:17:39
Showing 2 changed files
... ...
@@ -3,6 +3,33 @@ Copyright (C) 2002-2008 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4 4
 $Id$
5 5
 
6
+2008.11.19 -- Version 2.1_rc15
7
+
8
+* Fixed issue introduced in 2.1_rc14 that may cause a
9
+  segfault when a --plugin module is used.
10
+
11
+* Added server-side --opt-verify option: clients that connect
12
+  with options that are incompatible with those of the server
13
+  will be disconnected (without this option, incompatible
14
+  clients would trigger a warning message in the server log
15
+  but would not be disconnected).
16
+
17
+* Added --tcp-nodelay option: Macro that sets TCP_NODELAY socket
18
+  flag on the server as well as pushes it to connecting clients.
19
+
20
+* Minor options check fix: --no-name-remapping is a
21
+  server-only option and should therefore generate an
22
+  error when used on the client.
23
+
24
+* Added --prng option to control PRNG (pseudo-random
25
+  number generator) parameters.  In previous OpenVPN
26
+  versions, the PRNG was hardcoded to use the SHA1
27
+  hash.  Now any OpenSSL hash may be used.  This is
28
+  part of an effort to remove hardcoded references to
29
+  a specific cipher or cryptographic hash algorithm.
30
+
31
+* Cleaned up man page synopsis.
32
+
6 33
 2008.11.16 -- Version 2.1_rc14
7 34
 
8 35
 * Added AC_GNU_SOURCE to configure.ac to enable struct ucred,
... ...
@@ -1,5 +1,5 @@
1 1
 dnl define the OpenVPN version
2
-define(PRODUCT_VERSION,[2.1_rc14a])
2
+define(PRODUCT_VERSION,[2.1_rc15])
3 3
 dnl define the TAP version
4 4
 define(PRODUCT_TAP_ID,[tap0901])
5 5
 define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9])