diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-06-22 20:48:35 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-06-22 20:48:35 +0000 |
commit | 7ea8261049d8897b46e26f62dec3f6768e0b3f9a (patch) | |
tree | 763d0b19f9a1f695b5591b6b4633121a0d30457c /install-win32 | |
parent | Rename generated tapdrvr.cod to a unique name to avoid the issue where (diff) | |
download | openvpn-7ea8261049d8897b46e26f62dec3f6768e0b3f9a.tar.xz |
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.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4606 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32')
-rw-r--r-- | install-win32/settings.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/install-win32/settings.in b/install-win32/settings.in index 742fd31..cbfe58d 100644 --- a/install-win32/settings.in +++ b/install-win32/settings.in @@ -30,20 +30,20 @@ # Optional directory of prebuilt OpenVPN binary components, # to be used as a source when build-from-scratch prerequisites # are not met. -!define GENOUT_PREBUILT "../gen-prebuilt" +;!define GENOUT_PREBUILT "../gen-prebuilt" # tapinstall.exe source code. # Not needed if DRVBINSRC is defined # (or if using pre-built mode). -;!define TISRC "../tapinstall" +!define TISRC "../tapinstall" # TAP Adapter parameters. Note that PRODUCT_TAP_ID is # defined in version.m4. !define PRODUCT_TAP_DEVICE_DESCRIPTION "TAP-Win32 Adapter V9" !define PRODUCT_TAP_PROVIDER "TAP-Win32 Provider V9" !define PRODUCT_TAP_MAJOR_VER 9 -!define PRODUCT_TAP_MINOR_VER 5 -!define PRODUCT_TAP_RELDATE "05/13/2009" +!define PRODUCT_TAP_MINOR_VER 6 +!define PRODUCT_TAP_RELDATE "06/22/2009" # TAP adapter icon -- visible=0x81 or hidden=0x89 !define PRODUCT_TAP_CHARACTERISTICS 0x81 @@ -53,8 +53,8 @@ # DDK Version. # DDK distribution is assumed to be in C:\WINDDK\${DDKVER} -;!define DDKVER 6001.18002 -;!define DDKVER_MAJOR 6001 +!define DDKVER 6001.18002 +!define DDKVER_MAJOR 6001 # Code Signing. # If undefined, don't sign any files. |