ATM_QOS_CLASS_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_QOS_CLASS_IE structure specifies the quality of service (QoS) information element of an ATM UNI signaling message. The QoS information element requests and indicates the quality of service class for a connection.
Syntax
typedef struct _ATM_QOS_CLASS_IE {
UCHAR QOSClassForward;
UCHAR QOSClassBackward;
} ATM_QOS_CLASS_IE, *PATM_QOS_CLASS_IE;
Members
QOSClassForward
Specifies the forward QoS class as one of the following values:QOS_CLASS0
QoS class 0QOS_CLASS1
QoS class 1QOS_CLASS2
QoS class 2QOS_CLASS3
QoS class 3QOS_CLASS4
QoS class 4
QOSClassBackward
Specifies the backward QoS class as one of the following values:QOS_CLASS0
QoS class 0QOS_CLASS1
QoS class 1QOS_CLASS2
QoS class 2QOS_CLASS3
QoS class 3QOS_CLASS4
QoS class 4
Remarks
ATM_QOS_CLASS_IE can be included in a set of Q.2931 call manager-specific parameters.
ATM_QOS_CLASS_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 QoS calls information element, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also