ATM_ADDRESS 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_ADDRESS structure specifies an ATM address.

Syntax

typedef struct _ATM_ADDRESS {
  ATM_ADDRESSTYPE AddressType;
  ULONG           NumberOfDigits;
  UCHAR           Address[ATM_ADDRESS_LENGTH];
} ATM_ADDRESS, *PATM_ADDRESS;

Members

  • AddressType
    Specifies the format of the ATM address. A value of ATM_NSAP specifies an ATM Endstation Address (NSAP format). A value of ATM_E164 specifies an E.164 address (telephony format).

  • NumberOfDigits
    Indicates the number of digits in the ATM address.

  • Address
    An array that contains the ATM address.

Remarks

ATM_ADDRESS is a member of numerous ATM structures, including ATM_CALLING_PARTY_NUMBER_IE, ATM_PVC_SAP, ATM_SAP, Q2931_ADD_PVC, and Q2931_CALLMGR_PARAMETERS.

ATM_ADDRESS is also passed by OID_ATM_LECS_ADDRESS and OID_ATM_SERVICE_ADDRESS.

Requirements

Header

Atm.h (include Atm.h)

See also

ATM_CALLING_PARTY_NUMBER_IE

ATM_PVC_SAP

ATM_SAP

OID_ATM_LECS_ADDRESS

OID_ATM_SERVICE_ADDRESS

Q2931_ADD_PVC

Q2931_CALLMGR_PARAMETERS

 

 

Send comments about this topic to Microsoft