Simple module of the DHT test application
Author: Gregoire Menuel, Ingmar Baumgart
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
Name | Type | Description |
---|---|---|
BaseApp | simple module |
Base class for application implementations |
Name | Type | Description |
---|---|---|
DHTTestAppModules | compound module |
Compound module for a simple DHT test application |
Name | Type | Default value | Description |
---|---|---|---|
rpcUdpTimeout | double |
default timeout value for direct RPCs |
|
rpcKeyTimeout | double |
default timeout value for routed RPCs |
|
optimizeTimeouts | bool |
calculate timeouts from measured RTTs and network coordinates |
|
rpcExponentialBackoff | bool |
if true, doubles the timeout for every retransmission |
|
debugOutput | bool |
enable debug output |
|
testInterval | double |
time interval for DHT operations (put/get/modify) |
|
testTtl | int |
TTL for stored test records |
|
activeNetwInitPhase | bool |
send messages when network is in init phase? |
|
p2pnsTraffic | bool |
model p2pns application traffic |
Name | Value | Description |
---|---|---|
class | DHTTestApp | |
display | i=block/app |
Name | Direction | Size | Description |
---|---|---|---|
udpIn | input |
gate from the UDP layer |
|
from_lowerTier | input |
gate from the lower tier |
|
from_upperTier | input |
gate from the upper tier |
|
direct_in | input |
gate for sendDirect |
|
trace_in | input |
gate for trace file commands |
|
tcpIn | input |
gate from the TCP layer |
|
tcpOut | output |
gate to the TCP layer |
|
udpOut | output |
gate to the UDP layer |
|
to_lowerTier | output |
gate to the lower tier |
|
to_upperTier | output |
gate to the upper tier |
// // Simple module of the DHT test application // // @author Gregoire Menuel, Ingmar Baumgart // simple DHTTestApp extends BaseApp { parameters: @class(DHTTestApp); double testInterval @unit(s); // time interval for DHT operations (put/get/modify) int testTtl; // TTL for stored test records bool activeNetwInitPhase; // send messages when network is in init phase? bool p2pnsTraffic; // model p2pns application traffic }