Namespace inet
EigrpWideMetricPar
structStruct for wide metric paramaters
Fields
Name | Type | Description |
---|---|---|
offset | uint8_t | |
priority | uint8_t | |
reliability | uint8_t |
Min rel. on path |
load | uint8_t |
Max load on path |
mtu | uint32_t |
Min MTU on path, only 24 bits used |
hopCount | uint8_t |
Hop count to destination |
delay | uint64_t |
Delay sum on path, only 48 bits used |
bandwidth | uint64_t |
Min BW on path, only 48 bits used |
Source code
// Struct for wide metric paramaters struct EigrpWideMetricPar { @packetData; uint8_t offset = 0; uint8_t priority = 0; uint8_t reliability = 0; // Min rel. on path uint8_t load = 0; // Max load on path uint32_t mtu = 0; // Min MTU on path, only 24 bits used uint8_t hopCount = 0; // Hop count to destination uint64_t delay = 0; // Delay sum on path, only 48 bits used uint64_t bandwidth = 0; // Min BW on path, only 48 bits used }File: src/inet/routing/eigrp/messages/EigrpMessage.msg