- /** \brief Ethernet Frame Packet Information Structure.
- *
- * Type define for an Ethernet frame buffer data and information structure. This can be used to conveniently
- * store both the size and data in an Ethernet frame.
- */
- typedef struct
- {
- uint8_t FrameData[ETHERNET_FRAME_SIZE_MAX]; /**< Ethernet frame contents. */
- uint16_t FrameLength; /**< Length in bytes of the Ethernet frame stored in the buffer. */
- } Ethernet_Frame_Info_t;
-