ATM_RAW_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_RAW_IE structure specifies a user-defined information element of an ATM UNI signaling message. This information element supplies user-defined information in a raw (user-defined) format.

Syntax

typedef struct _ATM_RAW_IE {
  ULONG RawIELength;
  ULONG RawIEType;
  UCHAR RawIEValue[1];
} ATM_RAW_IE, *PATM_RAW_IE;

Members

  • RawIELength
    Specifies the size in bytes of the buffer at RawIEValue.

  • RawIEType
    Specifies the type of information in the buffer at RawIEValue. The encoding of RawIEType is user-defined.

  • RawIEValue
    Specifies a variable-length array that contains the user-defined information.

Remarks

ATM_RAW_IE can be included in a set of Q.2931 call manager-specific parameters.

ATM_RAW_IE is passed at IE in a Q2931_IE structure, which is passed at InfoElements in a Q2931_CALLMGR_PARAMETERS structure.

Requirements

Header

Atm.h (include Atm.h)

See also

Q2931_IE

Q2931_CALLMGR_PARAMETERS

 

 

Send comments about this topic to Microsoft