Compound Module MulticastScribe

File: Applications/Scribe/Scribe.ned

(no description)

scribe: Scribe

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.

Scribe (no description)

Gates:

Name Direction Description
from_udp input
from_lowerTier input
from_upperTier input
to_udp output
to_lowerTier output
to_upperTier output

Unassigned submodule parameters:

Name Type Description
scribe.debugOutput bool

if debug output should be enabled

scribe.childTimeout numeric

seconds until a node assumes that a particular child has failed

scribe.parentTimeout numeric

seconds until a node assumes that a particular parent has failed

Source code:

module MulticastScribe
    gates:
        in: from_udp, from_lowerTier, from_upperTier;
        out: to_udp, to_lowerTier, to_upperTier;

    submodules:
        scribe: Scribe;
    
    connections nocheck:
        from_lowerTier --> scribe.from_lowerTier;
        to_lowerTier <-- scribe.to_lowerTier;
        from_upperTier --> scribe.from_upperTier;
        to_upperTier <-- scribe.to_upperTier;
        from_udp --> scribe.from_udp;
        to_udp <-- scribe.to_udp;

endmodule