1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Fix typo in IN4ADDR_LOOPBACK_INIT.

This commit is contained in:
Akihiro Sagawa 2022-11-18 22:32:45 +09:00 committed by Alexandre Julliard
parent 87a3357900
commit 6521c09d3a

View File

@ -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 }