ATM_TRAFFIC_DESCRIPTOR_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_TRAFFIC_DESCRIPTOR_IE structure specifies the ATM traffic descriptor information element of an ATM UNI signaling message. This information element specifies the set of traffic parameters, which together specify a traffic-control capacity.
Syntax
typedef struct _ATM_TRAFFIC_DESCRIPTOR_IE {
ATM_TRAFFIC_DESCRIPTOR ForwardTD;
ATM_TRAFFIC_DESCRIPTOR BackwardTD;
BOOLEAN BestEffort;
} ATM_TRAFFIC_DESCRIPTOR_IE, *PATM_TRAFFIC_DESCRIPTOR_IE;
Members
ForwardTD
Specifies the forward traffic parameters, formatted as an ATM_TRAFFIC_DESCRIPTOR structure. For more information about this structure, see ATM_TRAFFIC_DESCRIPTOR.BackwardTD
Specifies the backward traffic parameters, formatted as an ATM_TRAFFIC_DESCRIPTOR structure. For more information about this structure, see ATM_TRAFFIC_DESCRIPTOR.BestEffort
Specifies the Best Effort Indication.
Remarks
ATM_TRAFFIC_DESCRIPTOR_IE can be included in a set of Q.2931 call manager-specific parameters.
ATM_TRAFFIC_DESCRIPTOR_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 ATM traffic descriptor information element, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also