ATM_TRAFFIC_DESCRIPTOR 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 structure specifies either forward or backward ATM traffic descriptor parameters in an ATM traffic descriptor information element.
Syntax
typedef struct _ATM_TRAFFIC_DESCRIPTOR {
ULONG PeakCellRateCLP0;
ULONG PeakCellRateCLP01;
ULONG SustainableCellRateCLP0;
ULONG SustainableCellRateCLP01;
ULONG MaximumBurstSizeCLP0;
ULONG MaximumBurstSizeCLP01;
BOOLEAN Tagging;
} ATM_TRAFFIC_DESCRIPTOR, *PATM_TRAFFIC_DESCRIPTOR;
Members
PeakCellRateCLP0
Specifies the Peak Cell Rate (CLP=0).PeakCellRateCLP01
Specifies the Peak Cell Rate (CLP=01).SustainableCellRateCLP0
Specifies the Sustainable Cell Rate (CLP=0).SustainableCellRateCLP01
Specifies the Sustainable Cell Rate (CLP=01).MaximumBurstSizeCLP0
Specifies the Maximum Burst Size (CLP=0).MaximumBurstSizeCLP01
Specifies the Maximum Burst Size (CLP=01).Tagging
Specifies the Tagging parameter.
Remarks
ATM_TRAFFIC_DESCRIPTOR specifies the traffic descriptor parameters for a single traffic direction: either forward (the direction from the calling user to the called user) or backward (the direction from the called user to the calling user).
ATM_TRAFFIC_DESCRIPTOR is a member of an ATM_TRAFFIC_DESCRIPTOR_IE structure.
For more information about the ATM traffic descriptor parameters, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also