TA_APPLETALK_ADDR structure
The TA_APPLETALK_ADDR structure contains a single AppleTalk transport address, suitable for use as a TRANSPORT_ADDRESS.
Syntax
typedef struct _TA_APPLETALK_ADDR {
LONG TAAddressCount;
struct _AddrAtalk {
USHORT AddressLength;
USHORT AddressType;
TDI_ADDRESS_APPLETALK Address[1];
} Address[1];
} TA_APPLETALK_ADDRESS, *PTA_APPLETALK_ADDRESS;
Members
TAAddressCount
Specifies one.Address
AddressLength
Specifies the length (4 bytes) of an AppleTalk address.AddressType
Specifies TDI_ADDRESS_TYPE_APPLETALK.Address
Specifies a single address of type TDI_ADDRESS_APPLETALK.
Remarks
TDI defines this structure for convenience in situations requiring a single TA_ADDRESS of type TDI_ADDRESS_TYPE_APPLETALK.
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