ATM_BROADBAND_BEARER_CAPABILITY_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_BROADBAND_BEARER_CAPABILITY_IE structure specifies the broadband bearer capability element of an ATM UNI signaling message. The broadband bearer capability element indicates a requested broadband connection-oriented bearer service to be provided by the network.
Syntax
typedef struct _ATM_BROADBAND_BEARER_CAPABILITY_IE {
UCHAR BearerClass;
UCHAR TrafficType;
UCHAR TimingRequirements;
UCHAR ClippingSusceptability;
UCHAR UserPlaneConnectionConfig;
} ATM_BROADBAND_BEARER_CAPABILITY_IE, *PATM_BROADBAND_BEARER_CAPABILITY_IE;
Members
BearerClass
Specifies the bearer class as one of the following values:BCOB_A
Bearer class ABCOB_C
Bearer class CBCOB_X
Bearer class X
TrafficType
Specifies the traffic type as one of the following values:TT_NOIND
No indication of traffic typeTT_CBR
Constant bit rateTT_VBR
Variable bit rate
TimingRequirements
Specifies the timing requirement as one of the following values:TR_NOIND
No indication of timing requirementsTR_END_TO_END
End-to-end timing requiredTR_NO_END_TO_END
End-to-end timing not required
ClippingSusceptability
Specifies the clipping susceptibility as one of the following values:CLIP_NOT
Not susceptible to clippingCLIP_SUS
Susceptible to clipping
UserPlaneConnectionConfig
Specifies the user plane connection configuration as one of the following values:UP_P2P
Point-to-point connectionUP_P2MP
Point-to-multipoint connection
Remarks
ATM_BROADBAND_BEARER_CAPABILITY_IE is an information element that specifies broadband bearer capability parameters. ATM_BROADBAND_BEARER_CAPABILITY_IE can be included in a set of Q.2931 call manager-specific parameters.
ATM_BROADBAND_BEARER_CAPABILITY_IE is passed at IE in a Q2931_IE structure, which is passed at InfoElements in a Q2931_CALLMGR_PARAMETERS structure.
For more information about the broadband bearer capability information element, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also