typedef struct _TA_ADDRESS_VNS {
LONG TAAddressCount;
struct _AddrVns {
USHORT AddressLength;
USHORT AddressType;
TDI_ADDRESS_VNS Address[1];
} Addresss[1];
} TA_VNS_ADDRESS, *PTA_VNS_ADDRESS;
TA_ADDRESS_VNS contains a single VNS transport address, suitable for use as a TRANSPORT_ADDRESS.
Members
TAAddressCount
Specifies one.
AddressLength
Specifies the length (14 bytes) of a VNS address.
AddressType
Specifies TDI_ADDRESS_TYPE_VNS.
Address[1]
Specifies a single address of type TDI_ADDRESS_VNS.
Comments
TDI defines this structure for convenience in situations requiring a single TDI_ADDRESS of type TDI_ADDRESS_TYPE_VNS.
See Also