Packet NTreeReplaceNodeMessage

File: src/overlay/ntree/NTree.msg

C++ definition

(no description)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

BaseOverlayMessage (packet)

Base class for all messages handled by overlay modules

Fields:

Name Type Description
oldNode TransportAddress
statType int

message type for stats

isLeaf bool
origin Vector2D
parent NodeHandle
children NodeHandle[]
type int

message type

size double

Source code:

packet NTreeReplaceNodeMessage extends BaseOverlayMessage
{
    Vector2D origin;
    double size;
    NodeHandle parent;
    NodeHandle children[];
    TransportAddress oldNode;
    bool isLeaf;
}