Namespace inet
LinkStateMsg
classPacket for disseminating link state information (TeLinkStateInfo[]) by the LinkStateRouting module which implements a minimalistic link state routing protocol.
Extends
Name | Type | Description |
---|---|---|
FieldsChunk | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
linkInfo | TeLinkStateInfo[] | |
request | bool |
if true, receiver is expected to send back its own link state database to the sender --FIXME really needed? bool ack = false; -- apparently unused, removed -- TODO check with Vojta |
command | int |
FIXME maybe do without this... |
Packet operations (observed)
action | module |
---|---|
insertAtBack | Ipv4, LinkStateRouting |
peekAtFront | LinkStateRouting |
Source code
// // Packet for disseminating link state information (~TeLinkStateInfo[]) by the // ~LinkStateRouting module which implements a minimalistic link state routing // protocol. // class LinkStateMsg extends FieldsChunk { TeLinkStateInfo linkInfo[]; bool request = false; // if true, receiver is expected to send back its own link state database to the sender --FIXME really needed? // bool ack = false; -- apparently unused, removed -- TODO check with Vojta int command = 1; // FIXME maybe do without this... }File: src/inet/networklayer/ted/LinkStatePacket.msg