ATM_TRANSIT_NETWORK_SELECTION_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_TRANSIT_NETWORK_SELECTION_IE structure specifies the ATM transit network selection information element of an ATM UNI signaling message. The ATM transit network selection information element identifies one requested transit network.
Syntax
typedef struct _ATM_TRANSIT_NETWORK_SELECTION_IE {
UCHAR TypeOfNetworkId;
UCHAR NetworkIdPlan;
UCHAR NetworkIdLength;
UCHAR NetworkId[1];
} ATM_TRANSIT_NETWORK_SELECTION_IE, *PATM_TRANSIT_NETWORK_SELECTION_IE;
Members
TypeOfNetworkId
Specifies the Type of Network Identifier as the following:- TNS_TYPE_NATIONAL
National network identification
- TNS_TYPE_NATIONAL
NetworkIdPlan
Specifies the Network Identification Plan as the following:- TNS_PLAN_CARRIER_ID_CODE
Carrier Identification Code
- TNS_PLAN_CARRIER_ID_CODE
NetworkIdLength
Specifies the size in bytes of the buffer at NetworkId.NetworkId
Specifies a variable-length array that contains the Network ID.
Remarks
ATM_TRANSIT_NETWORK_SELECTION_IE can be included in a set of Q.2931 call manager-specific parameters.
ATM_TRANSIT_NETWORK_SELECTION_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 transit network selection information element, see the User Network Interface (UNI) Specification published by the ATM Forum.
Requirements
Header |
Atm.h (include Atm.h) |
See also