mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Correct the loopback adapter's address mask and broadcast address
svn path=/trunk/; revision=42403
This commit is contained in:
parent
282b5c28f5
commit
2ca9ad54c6
1 changed files with 2 additions and 2 deletions
|
@ -187,8 +187,8 @@ typedef VOID (*IP_PROTOCOL_HANDLER)(
|
|||
|
||||
/* Loopback adapter address information (network byte order) */
|
||||
#define LOOPBACK_ADDRESS_IPv4 ((IPv4_RAW_ADDRESS)DH2N(0x7F000001))
|
||||
#define LOOPBACK_BCASTADDR_IPv4 ((IPv4_RAW_ADDRESS)DH2N(0x7F0000FF))
|
||||
#define LOOPBACK_ADDRMASK_IPv4 ((IPv4_RAW_ADDRESS)DH2N(0xFFFFFF00))
|
||||
#define LOOPBACK_BCASTADDR_IPv4 ((IPv4_RAW_ADDRESS)DH2N(0x7FFFFFFF))
|
||||
#define LOOPBACK_ADDRMASK_IPv4 ((IPv4_RAW_ADDRESS)DH2N(0xFF000000))
|
||||
|
||||
/* Protocol definitions */
|
||||
#ifndef IPPROTO_RAW
|
||||
|
|
Loading…
Reference in a new issue