1.2.5.33 ADP_GET_CFM_PARAMS Struct

C

typedef struct
{
    /* The identifier of the IB attribute read */
    uint32_t attributeId;
    /* The index within the table of the specified IB attribute read */
    uint16_t attributeIndex;
    /* The status of the get request */
    uint8_t status;
    /* The length of the value of the attribute read from the IB */
    uint8_t attributeLength;
    /* The value of the attribute read from the IB */
    uint8_t attributeValue[64];
} ADP_GET_CFM_PARAMS;

Summary

Defines the structure returned by the ADP_GET_CFM_CALLBACK function.

Description

This data type defines the structure of a Get Confirm callback. It is returned by the ADP_GET_CFM_CALLBACK function to indicate the Get result and value.

Field description:

  • attributeId. The identifier of the IB attribute to get. See ADP_PIB_ATTRIBUTE

  • attributeIndex. The index within the table of the specified IB attribute.

  • status. The result of the get request.

  • attributeLength. The length of the value of the attribute read from the IB.

  • attributeValue. Array containing the value of the attribute read from the IB.

Remarks

None.