ISCSI_IP_Address-Struktur (iscsidef.h)
Die ISCSI_IP_Address-Struktur definiert eine IP-Adresse.
Syntax
typedef struct _ISCSI_IP_Address {
ULONG Type;
ULONG IpV4Address;
UCHAR IpV6Address[16];
ULONG IpV6FlowInfo;
ULONG IpV6ScopeId;
WCHAR TextAddress[256 + 1];
} ISCSI_IP_Address, *PISCSI_IP_Address;
Member
Type
Ein ISCSIIPADDRESSTYPE-Wert , der den Typ der IP-Adresse angibt.
IpV4Address
Wenn Type = ISCSI_IP_ADDRESS_IPV4, die binäre IP-Adresse der Version 4. Andernfalls ist IpV4Address nicht definiert.
IpV6Address[16]
Wenn Typ = ISCSI_IP_ADDRESS_IPV6, die binäre IP-Adresse der Version 6. Andernfalls ist IpV6Address nicht definiert.
IpV6FlowInfo
Wenn Type = ISCSI_IP_ADDRESS_IPV6, die Flussinformationen für diese IP-Adresse, wie in Version 6 des IP-Protokolls definiert. Andernfalls ist IpV6FlowInfo nicht definiert.
IpV6ScopeId
Wenn Type = ISCSI_IP_ADDRESS_IPV6, die Bereichs-ID dieser IP-Adresse, wie in Version 6 des IP-Protokolls definiert, Andernfalls ist IpV6ScopeId nicht definiert.
TextAddress[256 + 1]
Wenn Type = ISCSI_IP_ADDRESS_TEXT, die DNS- oder gepunktete Dezimaltextadresse. Andernfalls ist TextAddress nicht definiert.
Anforderungen
Anforderung | Wert |
---|---|
Header | iscsidef.h (iscsidef.h einschließen) |