diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-07-16 09:47:41 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-07-16 09:47:41 +0000 |
commit | e19b44590ef04cfb44e75536e155896bde3865c8 (patch) | |
tree | c1aa819dc36836ec53a92a44048104c18d3f71a9 | |
parent | In Windows TAP driver, refactor DHCP/ARP packet injection code to (diff) | |
download | openvpn-e19b44590ef04cfb44e75536e155896bde3865c8.tar.xz |
OpenVPN version 2.1_rc19 releasedv2.1_rc19
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4712 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | version.m4 | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -1,6 +1,18 @@ OpenVPN Change Log Copyright (C) 2002-2009 OpenVPN Technologies, Inc. <sales@openvpn.net> +2009.07.16 -- Version 2.1_rc19 + +* In Windows TAP driver, refactor DHCP/ARP packet injection code to + use a DPC (deferred procedure call) to defer packet injection until + IRQL < DISPATCH_LEVEL, rather than calling NdisMEthIndicateReceive + in the context of AdapterTransmit. This is an attempt to reduce kernel + stack usage, and prevent EXCEPTION_DOUBLE_FAULT BSODs that have been + observed on Vista. Updated TAP driver version number to 9.6. + +* In configure.ac, use datadir instead of datarootdir for compatibility + with <autoconf-2.60. + 2009.06.07 -- Version 2.1_rc18 * Fixed compile error on ./configure --enable-small @@ -1,5 +1,5 @@ dnl define the OpenVPN version -define(PRODUCT_VERSION,[2.1_rc18a]) +define(PRODUCT_VERSION,[2.1_rc19]) dnl define the TAP version define(PRODUCT_TAP_ID,[tap0901]) define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9]) |