TA_ADDRESS_IP

typedef struct _TA_ADDRESS_IP {
    LONG  TAAddressCount;
    struct  _AddrIp {
        USHORT          AddressLength;
        USHORT          AddressType;
        TDI_ADDRESS_IP  Address[1];
    } Addresss[1];
} TA_IP_ADDRESS, *PTA_IP_ADDRESS;

TA_ADDRESS_IP contains a single IP transport address, suitable for use as a TRANSPORT_ADDRESS.

Members

TAAddressCount
Specifies one.
AddressLength
Specifies the length (14 bytes) of an IP address.
AddressType
Specifies TDI_ADDRESS_TYPE_IP.
Address[1]
Specifies a single address of type TDI_ADDRESS_IP.

Comments

TDI defines this structure for convenience in situations requiring a single TDI_ADDRESS of type TDI_ADDRESS_TYPE_IP.

See Also

TA_ADDRESS, TDI_ADDRESS_IP, TRANSPORT_ADDRESS