[PATCH 0/1] MR7073: nsiproxy: Set rcv/xmit speed to 1000000 on linux.
Phantom Blade Executioners launcher relies on this (and probably more dotnet applications/games that use the same library to check if they are online) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7073
From: Etaash Mathamsetty <etaash.mathamsetty(a)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; } } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7073
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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7073#note_91231
This merge request was approved by Huw Davies. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7073
participants (4)
-
Etaash Mathamsetty -
Etaash Mathamsetty (@etaash.mathamsetty) -
Huw Davies (@huw) -
Marvin