Simple Module GIASearchApp

File: Applications/GIASearchApp/GIASearchApp.ned

C++ definition: click here

Test application for testing GIA search-protocol

Author: Robert Palmer

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.

Parameters:

Name Type Description
debugOutput bool

use debug output?

messageDelay numeric

interval for sending route or search messages

randomNodes bool

use random destination nodes or only nodes from BootstrapOracle

maximumKeys numeric

maximum number of keys for this application

maxResponses numeric

maximum number of responses per search message

lookupNodeIds bool

deprecated!!!

activeNetwInitPhase bool

send messages when network is in init phase?

Gates:

Name Direction Description
from_overlay input

gate from overlay

to_overlay output

gate to overlay

Source code:

simple GIASearchApp
    parameters:
	debugOutput : bool, 		// use debug output?
	messageDelay : numeric, 	// interval for sending route or search messages
	randomNodes : bool, 		// use random destination nodes or only nodes from BootstrapOracle
	maximumKeys : numeric, 		// maximum number of keys for this application
	maxResponses : numeric, 	// maximum number of responses per search message
	lookupNodeIds : bool, 		// deprecated!!!
	activeNetwInitPhase : bool; 	// send messages when network is in init phase?
    
    gates:
        in: from_overlay;		// gate from overlay
        out: to_overlay;		// gate to overlay
endsimple