Message ReplaceIntermediateNodeMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to replace the IntermediateNode

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:

YMMOGMessage

Base message for all messages used by YMMOG

Fields:

Name Type Description
subSpaceId int

id of the SubSpace of the replaced IntermediateNode

subSpace SubSpace

the SubSpace of the replaced IntermediateNode

toReplace IPAddress

the IPAddress of the IntermediateNode to replace

ipList IPAddress[]

the new list of IPAddresses with the replaced IntermediateNode

Source code:

message ReplaceIntermediateNodeMessage extends YMMOGMessage {
    fields:
        int subSpaceId;    // id of the SubSpace of the replaced IntermediateNode
        SubSpace subSpace;    // the SubSpace of the replaced IntermediateNode
        IPAddress toReplace;    // the IPAddress of the IntermediateNode to replace
        IPAddress ipList[];    // the new list of IPAddresses with the replaced IntermediateNode
}