This is an issue with Windows 10. The solution is to disable Receive Segment Coalescing on the wireless adapter.
1. Open PowerShell as Administrator:
Right-click "Windows PowerShell" and select "Run as administrator".
2. Identify your wireless adapter:
In PowerShell, type Get-NetAdapter and press Enter.
This will list all your network adapters. Look for the one that corresponds to your wireless adapter (Wi-Fi, etc.). Note the name of the adapter, you'll need it for the next step.
3. Disable RSC:
In PowerShell, type the following command, replacing <AdapterName> with the name of your wireless adapter (without the quotes):
Disable-NetAdapterRsc -Name <AdapterName>
For example, if your adapter name is "Wi-Fi", the command would be: Disable-NetAdapterRsc -Name Wi-Fi.
4. Verify RSC is disabled:
To verify that RSC is disabled, you can use the command Get-NetAdapterRsc