Class OverlayCtrlInfo

File: Common/CommonAPIMessages.msg

C++ definition: click here

Author: Bernhard Heep

Control info for sending/receiving data via overlay Network. Travels between application and overlay.

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.

Fields:

Name Type Description
lastHopAddr IPvXAddress

IP address of last hop node

lastHopPort int

UDP port of last hop node

srcNode NodeHandle

the message's source node IP/port/nodeID

hopCount int

hop count

Source code:

class OverlayCtrlInfo
{
    fields:
	IPvXAddress lastHopAddr; // IP address of last hop node
	int lastHopPort;         // UDP port of last hop node

	//NodeHandle thisNode;     // local IP/port/nodeID (DEPRECATED!!!)
	NodeHandle srcNode;      // the message's source node IP/port/nodeID

	int hopCount = 0;        // hop count
};