mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 19:47:14 +00:00
[TCPIP]
- Missed this file in r54930 svn path=/branches/wlan-bringup/; revision=54932
This commit is contained in:
parent
0552bdfef6
commit
a8c61ab6c0
1 changed files with 5 additions and 3 deletions
|
@ -156,10 +156,12 @@ typedef struct _IP_INTERFACE {
|
|||
UINT MinFrameSize; /* Minimum frame size in bytes */
|
||||
UINT MTU; /* Maximum transmission unit */
|
||||
UINT Speed; /* Link speed */
|
||||
IP_ADDRESS Unicast; /* Unicast address */
|
||||
IP_ADDRESS PointToPoint; /* Point to point address */
|
||||
IP_ADDRESS Netmask; /* Netmask */
|
||||
IP_ADDRESS Unicast, StaticUnicast;/* Unicast address */
|
||||
IP_ADDRESS PointToPoint, StaticPointToPoint;/* Point to point address */
|
||||
IP_ADDRESS Netmask, StaticNetmask;/* Netmask */
|
||||
IP_ADDRESS Broadcast; /* Broadcast */
|
||||
IP_ADDRESS StaticRouter; /* Static default route */
|
||||
BOOLEAN DhcpEnabled; /* DHCP enabled */
|
||||
UNICODE_STRING Name; /* Adapter name (GUID) */
|
||||
UNICODE_STRING Description; /* Adapter description (Human readable) */
|
||||
PUCHAR Address; /* Pointer to interface address */
|
||||
|
|
Loading…
Reference in a new issue