-
Notifications
You must be signed in to change notification settings - Fork 522
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 Npcap to support NDIS 6.89 #737
Comments
Thanks for the suggestion, @anrossi. Deciding which NDIS versions to support is tricky since we need to create a different driver for each platform for each release for each NDIS version we support. Npcap 1.79 includes the following drivers: x64 platform: We have the following three drivers:
x86 (32-bit) platform: We have three drivers supporting the same NDIS versions as on x64. Microsoft doesn't support this platform on Windows 11 or Windows Server 2012 and later, so we don't expect to expand this set of drivers. ARM: We currently just have one driver (NDIS 6.50) for this since it's a much newer platfrom. Microsoft has some useful details on their Overview of NDIS versions page. With the NDIS improvements made since 6.50, it probably is about time that we split off a newer driver for x64 and ARM to support the latest features. Is NDIS 6.89 supported on mainstream Windows releases already or are you using a preview release? We probably can't get this into the upcoming Npcap 1.80 release, but hopefully the next one! |
Hi @fyodor, |
An issue somewhat related to this is the desire for hardware timestamp support discussed in #581 . That one requires NDIS 6.82 or newer, which is also newer than we currently use. |
This is a feature request is to update NpCap so the
MajorNdisVersion
andMinorNdisVersion
inNDIS_FILTER_DRIVER_CHARACTERISTICS
passed toNdisFRegisterFilterDriver
are updated to NDIS 6.89.NDIS 6.89 adds support for a new hardware offload, UDP RSC Offload (URO).
To ensure that existing and legacy NDIS Lightweight Filters (LWFs) are not broken by receiving large coalesced UDP packets, NDIS will disable URO on the NIC when an LWF or NDIS protocol driver binds to the stack, that targets a lower NDIS version.
Currently, this means that Windows 11 systems with a NIC that supports URO, that install npcap, will see URO disabled until npcap is uninstalled.
If NpCap already handles TCP Receive Segment Coalescing (RSC), then supporting URO should be very little work.
The text was updated successfully, but these errors were encountered: