1.2.5.71 ADP_PLC_BAND Enum

C

typedef enum
{
    /* Success */
    G3_SUCCESS = 0x00,
    /* Invalid request */
    G3_INVALID_REQUEST = 0xA1,
    /* Request failed */
    G3_FAILED = 0xA2,
    /* Invalid IPv6 frame */
    G3_INVALID_IPV6_FRAME = 0xA3,
    /* Not permited */
    G3_NOT_PERMITED = 0xA4,
    /* No route to destination */
    G3_ROUTE_ERROR = 0xA5,
    /* Operation timed out */
    G3_TIMEOUT = 0xA6,
    /* An attempt to write to a PIB attribute that is in a table failed
     * because the specified table index was out of range */
    G3_INVALID_INDEX = 0xA7,
    /* A parameter in the primitive is either not supported or is out of
     * the valid range */
    G3_INVALID_PARAMETER = 0xA8,
    /* A scan operation failed to find any network beacons */
    G3_NO_BEACON = 0xA9,
    /* A Set Request was issued with the identifier of an attribute that is read
     * only */
    G3_READ_ONLY = 0xB0,
    /* A Set/Get Request was issued with the identifier of a PIB attribute that
     * is not supported */
    G3_UNSUPPORTED_ATTRIBUTE = 0xB1,
    /* The path discovery has only a part of the path to its desired final
     * destination */
    G3_INCOMPLETE_PATH = 0xB2,
    /* Busy: operation already in progress */
    G3_BUSY = 0xB3,
    /* Not enough resources */
    G3_NO_BUFFERS = 0xB4,
    /* Trickle redundancy detected */
    G3_TRICKLE_REDUNDANT = 0xB5,
    /* Error internal */
    G3_ERROR_INTERNAL = 0xFF
} ADP_RESULT;

Summary

Identifies the list of errors returned by the ADP.

Description

This enumeration identifies the list of errors returned by the ADP on different operations.

Remarks

None.