Packet PastryRequestMessage

File: src/overlay/pastry/PastryMessage.msg

Message used to request PastryState or a Leafset

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

PastryMessage (packet)

Base message for all messages used by Pastry

Fields:

Name Type Description
pastryReqType int

the PastryMsgType

statType int

message type for stats

sendStateTo TransportAddress

TransportAddress of the node that requests the state

pastryMsgType int

the PastryMsgType

type int

message type

Source code:

//
// Message used to request PastryState or a Leafset
//
packet PastryRequestMessage extends PastryMessage
{
    TransportAddress sendStateTo = TransportAddress::UNSPECIFIED_NODE;    // TransportAddress of the node that requests the state
    int pastryReqType = PASTRY_MSG_STD;    // the PastryMsgType
}