IPv4 loop-back address should be 127.0.0.1, not 126.0.0.1.
From: Akihiro Sagawa sagawa.aki@gmail.com
--- include/mstcpip.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/mstcpip.h b/include/mstcpip.h index 08201f4ea8f..c7dffd55f12 100644 --- a/include/mstcpip.h +++ b/include/mstcpip.h @@ -46,7 +46,7 @@ struct tcp_keepalive #define RCVALL_SOCKETLEVELONLY 2
#define IN4ADDR_ANY_INIT { 0, 0, 0, 0 } -#define IN4ADDR_LOOPBACK_INIT { 126, 0, 0, 1 } +#define IN4ADDR_LOOPBACK_INIT { 127, 0, 0, 1 } #define IN4ADDR_BROADCAST_INIT { 255, 255, 255, 255 } #define IN4ADDR_ALLNODESONLINK_INIT { 224, 0, 0, 1 } #define IN4ADDR_ALLROUTERSONLINK_INIT { 224, 0, 0, 2 } @@ -74,7 +74,7 @@ struct tcp_keepalive #define WS_RCVALL_SOCKETLEVELONLY 2
#define WS_IN4ADDR_ANY_INIT { 0, 0, 0, 0 } -#define WS_IN4ADDR_LOOPBACK_INIT { 126, 0, 0, 1 } +#define WS_IN4ADDR_LOOPBACK_INIT { 127, 0, 0, 1 } #define WS_IN4ADDR_BROADCAST_INIT { 255, 255, 255, 255 } #define WS_IN4ADDR_ALLNODESONLINK_INIT { 224, 0, 0, 1 } #define WS_IN4ADDR_ALLROUTERSONLINK_INIT { 224, 0, 0, 2 }
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=126370
Your paranoid android.
=== debian11 (32 bit report) ===
d3d8: stateblock: Timeout visual: Timeout
d3d9: d3d9ex: Timeout device: Timeout stateblock: Timeout visual: Timeout
d3dcompiler_43: asm: Timeout blob: Timeout hlsl_d3d11: Timeout hlsl_d3d9: Timeout reflection: Timeout
d3dcompiler_46: asm: Timeout blob: Timeout hlsl_d3d11: Timeout hlsl_d3d9: Timeout reflection: Timeout
d3dcompiler_47: asm: Timeout blob: Timeout hlsl_d3d11: Timeout hlsl_d3d9: Timeout reflection: Timeout
d3drm: d3drm: Timeout vector: Timeout
d3dx10_34: d3dx10: Timeout
d3dx10_35: d3dx10: Timeout
d3dx10_36: d3dx10: Timeout
d3dx10_37: d3dx10: Timeout
d3dx10_38: d3dx10: Timeout
d3dx10_39: d3dx10: Timeout
d3dx10_40: d3dx10: Timeout
d3dx10_41: d3dx10: Timeout
d3dx10_42: d3dx10: Timeout
Report validation errors: d3dx10: Timeout
=== debian11 (build log) ===
WineRunWineTest.pl:error: The task timed out
This merge request was approved by Alex Henrie.