git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4500 e7ae566f-a301-0410-adde-c780ea21d3b5
| ... | ... |
@@ -1,7 +1,50 @@ |
| 1 | 1 |
OpenVPN |
| 2 | 2 |
Copyright (C) 2002-2009 OpenVPN Technologies, Inc. <sales@openvpn.net> |
| 3 | 3 |
|
| 4 |
-$Id$ |
|
| 4 |
+2009.05.30 -- Version 2.1_rc17 |
|
| 5 |
+ |
|
| 6 |
+* Reduce the debug level (--verb) at which received management interface |
|
| 7 |
+ commands are echoed from 7 to 3. Passwords will be filtered. |
|
| 8 |
+ |
|
| 9 |
+* Fixed race condition in management interface recv code on |
|
| 10 |
+ Windows, where sending a set of several commands to the |
|
| 11 |
+ management interface in quick succession might cause the |
|
| 12 |
+ latter commands in the set to be ignored. |
|
| 13 |
+ |
|
| 14 |
+* Increased management interface input command buffer size |
|
| 15 |
+ from 256 to 1024 bytes. |
|
| 16 |
+ |
|
| 17 |
+* Minor tweaks to Windows build system. |
|
| 18 |
+ |
|
| 19 |
+* Added "redirect-private" option which allows private subnets |
|
| 20 |
+ to be pushed to the client in such a way that they don't accidently |
|
| 21 |
+ obscure critical local addresses such as the DHCP server address and |
|
| 22 |
+ DNS server addresses. |
|
| 23 |
+ |
|
| 24 |
+* Added new 'autolocal' redirect-gateway flag. When enabled, the OpenVPN |
|
| 25 |
+ client will examine the routing table and determine whether (a) the |
|
| 26 |
+ OpenVPN server is reachable via a locally connected interface, or (b) |
|
| 27 |
+ traffic to the server must be forwarded through the default router. |
|
| 28 |
+ Only add a special bypass route for the OpenVPN server if (b) is true. |
|
| 29 |
+ If (a) is true, behave as if the 'local' flag is specified, and do not |
|
| 30 |
+ add a bypass route. |
|
| 31 |
+ |
|
| 32 |
+ The new 'autolocal' flag depends on the non-portable test_local_addr() |
|
| 33 |
+ function in route.c, which is currently only implemented for Windows. |
|
| 34 |
+ The 'autolocal' flag will act as a no-op on platforms that have not |
|
| 35 |
+ yet defined a test_local_addr() function. |
|
| 36 |
+ |
|
| 37 |
+* Increased TLS_CHANNEL_BUF_SIZE to 2048 from 1024 (this will allow for |
|
| 38 |
+ more option content to be pushed from server to client). |
|
| 39 |
+ |
|
| 40 |
+* Raised D_MULTI_DROPPED debug level to 4 from 3 to filter out (at debug |
|
| 41 |
+ levels <=3) a common and usually innocuous warning. |
|
| 42 |
+ |
|
| 43 |
+* Fixed issue of symbol conflicts interfering with Windows CryptoAPI |
|
| 44 |
+ functionality (Alon Bar-Lev). |
|
| 45 |
+ |
|
| 46 |
+* Fixed bug where the remote_X environmental variables were not being |
|
| 47 |
+ set correctly when the 'local' option is specifed. |
|
| 5 | 48 |
|
| 6 | 49 |
2009.05.17 -- Version 2.1_rc16 |
| 7 | 50 |
|