TA_ADDRESS_IPX

typedef struct _TA_ADDRESS_IPX {
    LONG  TAAddressCount;
    struct  _AddrIpx {
        USHORT          AddressLength;
        USHORT          AddressType;
        TDI_ADDRESS_IP  Address[1];
    } Addresss[1];
} TA_IPX_ADDRESS, *PTA_IPX_ADDRESS;

TA_ADDRESS_IPX contains a single IPX transport address, suitable for use as a TRANSPORT_ADDRESS.

Members

TAAddressCount
Specifies one.
AddressLength
Specifies the length (12 bytes) of an IPX address.
AddressType
Specifies TDI_ADDRESS_TYPE_IPX.
Address[1]
Specifies a single address of type TDI_ADDRESS_IPX.

Comments

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

See Also

TA_ADDRESS, TDI_ADDRESS_IPX, TRANSPORT_ADDRESS