Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TAP-Windows driver #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions deploy-prebuilt/windows/x32/tap/windows_10/OemVista.inf
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

; This version number should match the version
; number given in ..\version.m4.
DriverVer = 09/27/2019,9.24.2.601
DriverVer = 02/27/2024,9.27.0.0

[Strings]
DeviceDescription = "TAP-Windows Adapter V9"
Expand Down Expand Up @@ -88,6 +88,7 @@
CopyFiles = tap0901.driver, tap0901.files
AddReg = tap0901.reg
AddReg = tap0901.params.reg
DelReg = tap0901.params.delreg
Characteristics = 0x1
*IfType = 53 ; IF_TYPE_PROP_VIRTUAL
*MediaType = 0x0 ; NdisMedium802_3
Expand Down Expand Up @@ -117,16 +118,19 @@
HKR, Ndi\params\MediaStatus, Optional, 0, "0"
HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"
HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"
HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\MAC, Type, 0, "edit"
HKR, Ndi\params\MAC, Optional, 0, "1"
HKR, Ndi\params\NetworkAddress, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\NetworkAddress, Type, 0, "edit"
HKR, Ndi\params\NetworkAddress, Optional, 0, "1"
HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"
HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"
HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"
HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"
HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"
HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"

[tap0901.params.delreg]
HKR, Ndi\params\MAC

;----------------------------------------------------------------
; Service Section
;----------------------------------------------------------------
Expand Down
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x32/tap/windows_10/tap0901.cat
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x32/tap/windows_10/tap0901.sys
100755 → 100644
Binary file not shown.
24 changes: 14 additions & 10 deletions deploy-prebuilt/windows/x32/tap/windows_7/OemVista.inf
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
Class = Net

; This version number should match the version
; number given in SOURCES.
DriverVer=04/21/2016,9.00.00.21
; number given in ..\version.m4.
DriverVer = 10/08/2020,9.24.6.601

[Strings]
DeviceDescription = "TAP-Windows Adapter V9"
Expand All @@ -65,9 +65,9 @@
; Manufacturer + Product Section (Done)
;----------------------------------------------------------------
[Manufacturer]
%Provider% = tap0901
%Provider% = tap0901, NTx86

[tap0901]
[tap0901.NTx86]
%DeviceDescription% = tap0901.ndi, root\tap0901 ; Root enumerated
%DeviceDescription% = tap0901.ndi, tap0901 ; Legacy

Expand All @@ -88,10 +88,11 @@
CopyFiles = tap0901.driver, tap0901.files
AddReg = tap0901.reg
AddReg = tap0901.params.reg
Characteristics =
*IfType = 0x6 ; IF_TYPE_ETHERNET_CSMACD
DelReg = tap0901.params.delreg
Characteristics = 0x1
*IfType = 53 ; IF_TYPE_PROP_VIRTUAL
*MediaType = 0x0 ; NdisMedium802_3
*PhysicalMediaType = 14 ; NdisPhysicalMedium802_3
*PhysicalMediaType = 0 ; NdisPhysicalMediumUnspecified

[tap0901.ndi.Services]
AddService = tap0901, 2, tap0901.service
Expand All @@ -117,16 +118,19 @@
HKR, Ndi\params\MediaStatus, Optional, 0, "0"
HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"
HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"
HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\MAC, Type, 0, "edit"
HKR, Ndi\params\MAC, Optional, 0, "1"
HKR, Ndi\params\NetworkAddress, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\NetworkAddress, Type, 0, "edit"
HKR, Ndi\params\NetworkAddress, Optional, 0, "1"
HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"
HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"
HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"
HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"
HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"
HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"

[tap0901.params.delreg]
HKR, Ndi\params\MAC

;----------------------------------------------------------------
; Service Section
;----------------------------------------------------------------
Expand Down
Binary file modified deploy-prebuilt/windows/x32/tap/windows_7/tap0901.cat
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x32/tap/windows_7/tap0901.sys
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x32/tap/windows_7/tapinstall.exe
100755 → 100644
Binary file not shown.
12 changes: 8 additions & 4 deletions deploy-prebuilt/windows/x64/tap/windows_10/OemVista.inf
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

; This version number should match the version
; number given in ..\version.m4.
DriverVer = 09/27/2019,9.24.2.601
DriverVer = 02/27/2024,9.27.0.0

[Strings]
DeviceDescription = "TAP-Windows Adapter V9"
Expand Down Expand Up @@ -88,6 +88,7 @@
CopyFiles = tap0901.driver, tap0901.files
AddReg = tap0901.reg
AddReg = tap0901.params.reg
DelReg = tap0901.params.delreg
Characteristics = 0x1
*IfType = 53 ; IF_TYPE_PROP_VIRTUAL
*MediaType = 0x0 ; NdisMedium802_3
Expand Down Expand Up @@ -117,16 +118,19 @@
HKR, Ndi\params\MediaStatus, Optional, 0, "0"
HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"
HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"
HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\MAC, Type, 0, "edit"
HKR, Ndi\params\MAC, Optional, 0, "1"
HKR, Ndi\params\NetworkAddress, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\NetworkAddress, Type, 0, "edit"
HKR, Ndi\params\NetworkAddress, Optional, 0, "1"
HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"
HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"
HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"
HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"
HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"
HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"

[tap0901.params.delreg]
HKR, Ndi\params\MAC

;----------------------------------------------------------------
; Service Section
;----------------------------------------------------------------
Expand Down
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x64/tap/windows_10/tap0901.cat
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x64/tap/windows_10/tap0901.sys
100755 → 100644
Binary file not shown.
20 changes: 12 additions & 8 deletions deploy-prebuilt/windows/x64/tap/windows_7/OemVista.inf
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
Class = Net

; This version number should match the version
; number given in SOURCES.
DriverVer=04/21/2016,9.00.00.21
; number given in ..\version.m4.
DriverVer = 10/08/2020,9.24.6.601

[Strings]
DeviceDescription = "TAP-Windows Adapter V9"
Expand Down Expand Up @@ -88,10 +88,11 @@
CopyFiles = tap0901.driver, tap0901.files
AddReg = tap0901.reg
AddReg = tap0901.params.reg
Characteristics =
*IfType = 0x6 ; IF_TYPE_ETHERNET_CSMACD
DelReg = tap0901.params.delreg
Characteristics = 0x1
*IfType = 53 ; IF_TYPE_PROP_VIRTUAL
*MediaType = 0x0 ; NdisMedium802_3
*PhysicalMediaType = 14 ; NdisPhysicalMedium802_3
*PhysicalMediaType = 0 ; NdisPhysicalMediumUnspecified

[tap0901.ndi.Services]
AddService = tap0901, 2, tap0901.service
Expand All @@ -117,16 +118,19 @@
HKR, Ndi\params\MediaStatus, Optional, 0, "0"
HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"
HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"
HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\MAC, Type, 0, "edit"
HKR, Ndi\params\MAC, Optional, 0, "1"
HKR, Ndi\params\NetworkAddress, ParamDesc, 0, "MAC Address"
HKR, Ndi\params\NetworkAddress, Type, 0, "edit"
HKR, Ndi\params\NetworkAddress, Optional, 0, "1"
HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"
HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"
HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"
HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"
HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"
HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"

[tap0901.params.delreg]
HKR, Ndi\params\MAC

;----------------------------------------------------------------
; Service Section
;----------------------------------------------------------------
Expand Down
Binary file modified deploy-prebuilt/windows/x64/tap/windows_7/tap0901.cat
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x64/tap/windows_7/tap0901.sys
100755 → 100644
Binary file not shown.
Binary file modified deploy-prebuilt/windows/x64/tap/windows_7/tapinstall.exe
100755 → 100644
Binary file not shown.