ATM_PVC_SAP 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_PVC_SAP structure specifies ATM medium-specific SAP information for a permanent virtual connection (PVC).
Syntax
typedef struct _ATM_PVC_SAP {
ATM_BLLI_IE Blli;
ATM_BHLI_IE Bhli;
} ATM_PVC_SAP, *PATM_PVC_SAP;
Members
Blli
An ATM_BLLI_IE structure that specifies the broadband low layer information for the SAP. For a detailed description of this structure, see ATM_BLLI_IE.Bhli
An ATM_BHLI_IE structure that specifies broadband high layer information for the SAP. For a detailed description of this structure, see ATM_BHLI_IE.
Remarks
ATM_SAP is a member of a Q2931_ADD_PVC structure, which specifies Q.2931 parameters needed by a call manager or MCM driver to add a permanent virtual connection (PVC) to its list of configured PVCs.
A connection-oriented client supplies a Q2931_ADD_PVC structure (which contains ATM SAP information in an ATM_PVC_SAP structure) when issuing an OID_CO_ADD_PVC to a call manager or MCM driver that supports the Q.2931 signaling protocol.
If a connection-oriented client then registers the SAP configured for the PVC by calling NdisClRegisterSap, the call manager or MCM driver will indicate to that client any incoming calls on that PVC that are addressed to that SAP.
Requirements
Header |
Atm.h (include Atm.h) |
See also