Compound Module OverlayVast

File: Overlay/Vast/OverlayVast.ned

(no description)

vast: Vast neighborsList: NeighborsList

Usage diagram:

The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.

Contains the following modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

NeighborsList

@file NeighborsList.ned

Author: Helge Backhaus

Vast

@file Vast.ned

Author: Helge Backhaus

Parameters:

Name Type Description
localPort numeric
debugOutput bool
keyLength numeric
measureNetwInitPhase bool
drawOverlayTopology bool
hopCountMax numeric
lookupNumberNextHops numeric
lookupParallelPaths numeric
lookupParallelRpcs numeric
lookupSecure bool
lookupMerge bool
lookupFailedNodeRpcs bool
useBaseLookup bool
iterativeLookup bool
debugVastOutput bool
AOI_size numeric
joinTimeout numeric
pingTimeout numeric

Gates:

Name Direction Description
from_udp input
to_udp output
from_app input
to_app output

Unassigned submodule parameters:

Name Type Description

Source code:

module OverlayVast

    parameters:
        localPort: numeric,
        debugOutput: bool,
        keyLength : numeric,
        measureNetwInitPhase: bool,
        drawOverlayTopology : bool,
        hopCountMax : numeric,

        lookupNumberNextHops : numeric,
        lookupParallelPaths : numeric,
        lookupParallelRpcs : numeric,
        lookupSecure : bool,
        lookupMerge : bool,
	lookupFailedNodeRpcs : bool,

        useBaseLookup : bool,
        iterativeLookup : bool,

        debugVastOutput: bool,
        AOI_size: numeric,
        joinTimeout: numeric,
        pingTimeout: numeric;

    gates:
        in: from_udp;
        out: to_udp;
        in: from_app;
        out: to_app;

    submodules:
        vast: Vast;
            parameters:
                localPort=localPort,
                debugOutput=debugOutput,

                keyLength=keyLength,
                measureNetwInitPhase=measureNetwInitPhase,
                drawOverlayTopology=drawOverlayTopology,
                hopCountMax=hopCountMax,

                lookupNumberNextHops=lookupNumberNextHops,
                lookupParallelPaths=lookupParallelPaths,
                lookupParallelRpcs=lookupParallelRpcs,
                lookupSecure=lookupSecure,
                lookupMerge=lookupMerge,
		lookupFailedNodeRpcs=lookupFailedNodeRpcs,

                useBaseLookup=useBaseLookup,
                iterativeLookup=iterativeLookup,

                debugVastOutput=debugVastOutput,
                AOI_size=AOI_size,
                joinTimeout=joinTimeout,
                pingTimeout=pingTimeout;
            display: "p=60,60;i=block/circle";

        neighborsList: NeighborsList;
            display: "p=180,60;i=block/table";

        connections:
            from_udp --> vast.from_udp++;
            to_udp <-- vast.to_udp++;
            from_app --> vast.from_app;
            to_app <-- vast.to_app;
endmodule