File Applications/ScribeTest/ScribeTest.ned

Contains:

simple ScribeTest
    parameters:
        debugOutput: bool; // if debug output should be enabled
    gates:
        in: from_udp, from_lowerTier, from_upperTier, direct_in;
        out: to_udp, to_lowerTier, to_upperTier;
endsimple

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

    submodules:
        scribeTest: ScribeTest;

    connections nocheck:
        from_lowerTier --> scribeTest.from_lowerTier;
        to_lowerTier <-- scribeTest.to_lowerTier;
        from_upperTier --> scribeTest.from_upperTier;
        to_upperTier <-- scribeTest.to_upperTier;
        from_udp --> scribeTest.from_udp;
        to_udp <-- scribeTest.to_udp;

endmodule