EthernetPhyHeader
classThis class represents an Ethernet PHY header as defined in the IEEE Std 802.3-2018, IEEE Standard for Ethernet.
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ | Preamble (0x55) | + +---------------+ | | SFD | +-----------------------------------------------+---------------+
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
| Name | Type | Description |
|---|---|---|
| EthernetPhyHeaderBase | class |
This is a base class for all IEEE 802.3 Ethernet PHY headers defined the IEEE Std 802.3-2018, IEEE Standard for Ethernet. |
Fields
| Name | Type | Description |
|---|---|---|
| chunkLength | b | |
| id | int | |
| mutable | bool | |
| complete | bool | |
| correct | bool | |
| properlyRepresented | bool | |
| rawBin | string[] | |
| rawHex | string[] | |
| regionTags | SharingRegionTagSet::TagBaseRegionTag[] |
Source code
// // This class represents an Ethernet PHY header as defined in the IEEE Std // 802.3-2018, IEEE Standard for Ethernet. // // 0 1 2 3 // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 // +---------------------------------------------------------------+ // | Preamble (0x55) | // + +---------------+ // | | SFD | // +-----------------------------------------------+---------------+ // class EthernetPhyHeader extends EthernetPhyHeaderBase { }File: src/inet/physicallayer/wired/ethernet/EthernetPhyHeader.msg