1.3.3.1.35 MAC_ADDRESS Struct

C

typedef struct
{
    union {
        MAC_SHORT_ADDRESS shortAddress;
        MAC_EXTENDED_ADDRESS extendedAddress;
    };
    MAC_ADDRESS_MODE addressMode;
} MAC_ADDRESS;

Summary

Identifies a G3 MAC layer Address.

Description

This structure contains the Addressing Mode and the short/extended address for a G3 node.

Field description:

  • shortAddress. Short address. Only applicable when addressMode is equal to MAC_ADDRESS_MODE_SHORT.

  • extendedAddress. Extended address. Only applicable when addressMode is equal to MAC_ADDRESS_MODE_EXTENDED.

  • addressMode. Addressing mode of the contained address.

Remarks

None.