TA_NETBIOS_ADDRESS structure
The TA_NETBIOS_ADDRESS structure contains a single NetBIOS transport address, suitable for use as a TRANSPORT_ADDRESS.
Syntax
typedef struct _TA_ADDRESS_NETBIOS {
LONG TAAddressCount;
struct _Addr {
USHORT AddressLength;
USHORT AddressType;
TDI_ADDRESS_NETBIOS Address[1];
} Address[1];
} TA_NETBIOS_ADDRESS, *PTA_NETBIOS_ADDRESS;
Members
TAAddressCount
Specifies one.Address
Specifies a single address of a structure with the following members:AddressLength
Specifies the length (18 bytes) of a NetBIOS address.AddressType
Specifies TDI_ADDRESS_TYPE_NETBIOS.Address
Specifies a single address of type TDI_ADDRESS_NETBIOS.
Remarks
TDI defines this structure for convenience in situations requiring a single TDI_ADDRESS of type TDI_ADDRESS_TYPE_NETBIOS.
Note The TDI feature is deprecated and will be removed in future versions of Microsoft Windows. Depending on how you use TDI, use either the Winsock Kernel (WSK) or Windows Filtering Platform (WFP). For more information about WFP and WSK, see Windows Filtering Platform and Winsock Kernel. For a Windows Core Networking blog entry about WSK and TDI, see Introduction to Winsock Kernel (WSK).
Requirements
Header |
Tdi.h (include Tdi.h or TdiKrnl.h) |
See also