File Applications/ScribeTest/ScribeTest.ned
Contains:
simple ScribeTest
parameters:
debugOutput: bool;
gates:
in: from_udp, from_lowerTier, from_upperTier, direct_in;
out: to_udp, to_lowerTier, to_upperTier;
endsimple
module ScribeTestModule
parameters:
debugOutput: bool;
gates:
in: from_udp, from_lowerTier, from_upperTier;
out: to_udp, to_lowerTier, to_upperTier;
submodules:
scribeTest: ScribeTest;
parameters:
debugOutput = debugOutput;
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