ATM_BHLI_IE structure
Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.
The ATM_BHLI_IE structure specifies broadband high-layer information, which indicates the means that should be used for compatibility checking by an addressed entity (for example, a remote user, an interworking unit, or a high-layer function network node addressed by the calling user).
Syntax
typedef struct _ATM_BHLI_IE {
ULONG HighLayerInfoType;
ULONG HighLayerInfoLength;
UCHAR HighLayerInfo[8];
} ATM_BHLI_IE, *PATM_BHLI_IE;
Members
HighLayerInfoType
Specifies the High Layer Information Type as one of the following values:BHLI_ISO
ISOBHLI_UserSpecific
User SpecificBHLI_HighLayerProfile
High Layer Profile (only in UNI3.0)BHLI_VendorSpecificAppId
Vendor Specific Application identifier
HighLayerInfoLength
Specifies the size in bytes of the buffer at HighLayerInfo.HighLayerInfo
Specifies the High Layer Information. The contents depend on the specified High Layer Information Type.
Remarks
ATM_BHLI_IE is a member of an ATM_PVC_SAP structure or an ATM_SAP structure. ATM_PVC_SAP specifies ATM-specific SAP information for a PVC. ATM_SAP specifies ATM-specific SAP information for a switched (SVC).
ATM_BHLI_IE is also used to specify the broadband low layer information element of an ATM UNI signaling message.
For information about the broadband high layer information, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also