Simple Module DHT

File: Applications/DHT/DHT.ned

C++ definition: click here

Simple module of the DHT

Author: Bernhard Heep, Ingmar Baumgart

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.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

DHTModules

Compound module for a simple DHT using the KBR interface

Parameters:

Name Type Description
debugOutput bool
numReplica numeric
numGetRequests numeric
ratioIdentical numeric

Gates:

Name Direction Description
from_lowerTier input
from_upperTier input
to_lowerTier output
to_upperTier output

Source code:

simple DHT
    parameters:
        debugOutput : bool,
        numReplica : numeric,
        numGetRequests : numeric,
        ratioIdentical : numeric;
    
    gates:
        in: from_lowerTier, from_upperTier;
        out: to_lowerTier, to_upperTier;
endsimple