Message PastryRoutingRowMessage

File: Overlay/Pastry/PastryMessage.msg

(no description)

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

PastryMessage

Base message for all messages used by Pastry

Fields:

Name Type Description
sender NodeHandle
routingTable NodeHandle[]
row int
timestamp simtime_t

Source code:

message PastryRoutingRowMessage extends PastryMessage
{
    fields:
        NodeHandle sender = NodeHandle::UNSPECIFIED_NODE;
        NodeHandle routingTable[];
        int row;
        simtime_t timestamp = 0;

}