7#include <Vector/BLF/platform.h>
11#include <Vector/BLF/AbstractFile.h>
12#include <Vector/BLF/ObjectHeader.h>
14#include <Vector/BLF/vector_blf_export.h>
24struct VECTOR_BLF_EXPORT EthernetFrameForwarded final : ObjectHeader {
25 EthernetFrameForwarded();
Definition AbstractFile.h:19
void read(AbstractFile &is) override
Definition EthernetFrameForwarded.cpp:14
uint16_t channel
application channel, i.e. Eth 1
Definition EthernetFrameForwarded.h:56
uint16_t hardwareChannel
HW channel.
Definition EthernetFrameForwarded.h:61
uint16_t structLength
Length of this structure, without sizeof(VBLObjectHeader), without mStructLength member and without m...
Definition EthernetFrameForwarded.h:41
uint32_t calculateObjectSize() const override
Definition EthernetFrameForwarded.cpp:49
uint16_t frameLength
Number of valid frameData bytes.
Definition EthernetFrameForwarded.h:81
uint64_t frameDuration
Transmission duration in [ns].
Definition EthernetFrameForwarded.h:66
std::vector< uint8_t > frameData
Max 1612 data bytes per frame. Contains Ethernet header + Ethernet payload.
Definition EthernetFrameForwarded.h:94
uint16_t flags
flags, which indicates the valid fields:
Definition EthernetFrameForwarded.h:51
uint32_t frameChecksum
Ethernet checksum.
Definition EthernetFrameForwarded.h:71
uint32_t reservedEthernetFrameForwarded
Definition EthernetFrameForwarded.h:89
void write(AbstractFile &os) override
Definition EthernetFrameForwarded.cpp:30
uint32_t frameHandle
Handle which refer the corresponding EthernetFrameForwarded event.
Definition EthernetFrameForwarded.h:86
uint16_t dir
Direction flag: 0=Rx, 1=Tx, 2=TxRq.
Definition EthernetFrameForwarded.h:76
virtual uint16_t calculateStructLength() const
Definition EthernetFrameForwarded.cpp:65