TA_NETBIOS_ADDRESS

typedef struct _TA_NETBIOS_ADDRESS {

    LONG  TAAddressCount;

    struct _Addr{

        USHORT               AddressLength;

        USHORT               AddressType;

        TDI_ADDRESS_NETBIOS  Address[1];

    } Address [1];

} TA_NETBIOS_ADDRESS, *PTA_NETBIOS_ADDRESS;

 

TA_NETBIOS_ADDRESS contains a single NetBIOS transport address, suitable for use as a TRANSPORT_ADDRESS.

Members

TAAddressCount

Specifies one.

AddressLength

Specifies the length (18 bytes) of a NetBIOS address.

AddressType

Specifies TDI_ADDRESS_TYPE_NETBIOS.

Address[1]

Specifies a single address of type TDI_ADDRESS_NETBIOS.

Comments

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

See Also

TA_ADDRESS, TDI_ADDRESS_NETBIOS, TRANSPORT_ADDRESS