Compound Module OverlayYMMOG

File: Overlay/YMMOG/OverlayYMMOG.ned

(no description)

ymmog: YMMOG

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.

YMMOG (no description)

Parameters:

Name Type Description
localPort numeric

Gates:

Name Direction Description
from_udp input
to_udp output
from_app input
to_app output

Unassigned submodule parameters:

Name Type Description
ymmog.timeSlotSize numeric
ymmog.maxPlayerLeafs numeric
ymmog.treeWidth numeric
ymmog.logLevel numeric
ymmog.maxFailed numeric
ymmog.maxFailedPings numeric
ymmog.subscriptionRange numeric
ymmog.unsubscriptionRange numeric
ymmog.localPort numeric
ymmog.debug bool

Source code:

module OverlayYMMOG

    parameters:
	localPort: numeric;	
    gates:
        in: from_udp;
        out: to_udp;
        in: from_app;
        out: to_app;

    submodules:
        ymmog: YMMOG;
            display: "p=68,68;i=block/circle";
    connections:
        from_udp --> ymmog.from_udp++;
        to_udp <-- ymmog.to_udp++;
        from_app --> ymmog.from_app;
        to_app <-- ymmog.to_app;

endmodule