Browse code

Version 2.1_rc16

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

james authored on 2009/05/18 09:47:45
Showing 2 changed files
... ...
@@ -3,6 +3,59 @@ Copyright (C) 2002-2008 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4 4
 $Id$
5 5
 
6
+2009.05.17 -- Version 2.1_rc16
7
+
8
+* Windows installer changes:
9
+
10
+  1. ifdefed out the check Windows version code which is causing
11
+  problems on Windows 7
12
+
13
+  2. don't define SF_SELECTED if it is already defined
14
+
15
+  3. Use LZMA instead of BZIP2 compression for better compression
16
+
17
+  4. Upgraded OpenSSL to 0.9.8k
18
+
19
+* Added the ability to read the configuration file
20
+  from stdin, when "stdin" is given as the config
21
+  file name.
22
+
23
+* Allow "management-client" directive to be used
24
+  with unix domain sockets.
25
+
26
+* Added errors-to-stderr option.  When enabled, fatal errors
27
+  that result in the termination of the daemon will be written
28
+  to stderr.
29
+
30
+* Added optional "nogw" (no gateway) flag to --server-bridge
31
+  to inhibit the pushing of the route-gateway parameter to
32
+  clients.
33
+
34
+* Added new management interface command "pid" to show the
35
+  process ID of the current OpenVPN process (Angelo Laub).
36
+
37
+* Fixed issue where SIGUSR1 restarts would fail if private
38
+  key was specified as an inline file.
39
+
40
+* Added daemon_start_time and daemon_pid environmental variables.
41
+
42
+* In management interface, added new ">CLIENT:ESTABLISHED" notification.
43
+
44
+* Build fixes:
45
+
46
+  1. Fixed some issues with C++ style comments that leaked into the code.
47
+
48
+  2. Updated configure.ac to work on MinGW64.
49
+
50
+  3. Updated common.h types for _WIN64.
51
+
52
+  4. Fixed issue involving an #ifdef in a macro reference that breaks early gcc
53
+     compilers.
54
+
55
+  5. In cryptoapi.c, renamed CryptAcquireCertificatePrivateKey to
56
+     OpenVPNCryptAcquireCertificatePrivateKey to work around
57
+     a symbol conflict in MinGW-5.1.4.
58
+
6 59
 2008.11.19 -- Version 2.1_rc15
7 60
 
8 61
 * Fixed issue introduced in 2.1_rc14 that may cause a
... ...
@@ -1,5 +1,5 @@
1 1
 dnl define the OpenVPN version
2
-define(PRODUCT_VERSION,[2.1_rc15e])
2
+define(PRODUCT_VERSION,[2.1_rc16])
3 3
 dnl define the TAP version
4 4
 define(PRODUCT_TAP_ID,[tap0901])
5 5
 define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9])