Simple module of the P2PNS test application
Author: Ingmar Baumgart
The following diagram shows usage relationships between types.
Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type.
Unresolved types are missing from the diagram.
If a module type shows up more than once, that means it has been defined in more than one NED file.
P2PNSTestAppModules (compound module) |
Compound module for a simple DHT test application |
Name | Type | Default value | Description |
---|---|---|---|
debugOutput | bool |
enable debug output |
|
messageDelay | double |
time interval between sending test messages |
|
activeNetwInitPhase | bool |
send messages when network is in init phase? |
Name | Value | Description |
---|---|---|
display | i=block/app |
Name | Direction | Size | Description |
---|---|---|---|
from_lowerTier | input |
gate from the lower tier |
|
direct_in | input |
gate for sendDirect |
|
trace_in | input |
gate for trace file commands |
|
to_lowerTier | output |
gate to the lower tier |
// // Simple module of the P2PNS test application // // @author Ingmar Baumgart // simple P2PNSTestApp { parameters: bool debugOutput; // enable debug output double messageDelay @unit(s); // time interval between sending test messages bool activeNetwInitPhase; // send messages when network is in init phase? @display("i=block/app"); gates: input from_lowerTier; // gate from the lower tier input direct_in; // gate for sendDirect input trace_in; // gate for trace file commands output to_lowerTier; // gate to the lower tier }