Phantom Blade Executioners launcher relies on this (and probably more dotnet applications/games that use the same library to check if they are online)
From: Etaash Mathamsetty etaash.mathamsetty@gmail.com
--- dlls/nsiproxy.sys/ndis.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/nsiproxy.sys/ndis.c b/dlls/nsiproxy.sys/ndis.c index 372272dd115..c7d1f73f67b 100644 --- a/dlls/nsiproxy.sys/ndis.c +++ b/dlls/nsiproxy.sys/ndis.c @@ -405,6 +405,8 @@ static void ifinfo_fill_dynamic( struct if_entry *entry, struct nsi_ndis_ifinfo_ data->out_ucast_pkts = values[6]; data->out_errors = values[7]; data->out_discards = values[8]; + /* Some applications check for link speed >= 1000000 */ + data->rcv_speed = data->xmit_speed = 1000000; break; } }
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=150516
Your paranoid android.
=== debian11b (64 bit WoW report) ===
comctl32: propsheet.c:1689: Test failed: Got 1 propsheet.c:1721: Test failed: Got 1
It would be nice to obtain a meaningful value from linux, but this doesn't seem straight forward.
This merge request was approved by Huw Davies.