Simple Module BurstApplLayer

File: contrib/applLayer/BurstApplLayer.ned

C++ definition: click here

Application layer to test lower layer implementations

This application layer does exactly the same as the TestApplLayer. The only difference is that is sends a burst of broadcast messages instead of just one. The burst size is specified in burstSize and can be set in omnetpp.ini

@sa TestApplALyer

Author: Daniel Willkomm

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.

Host (no description)
Host (no description)
Host (no description)

Parameters:

Name Type Description
debug bool

debug switch

headerLength numeric const

length of the application message header (in bits)

burstSize numeric const

size of the burst

Gates:

Name Direction Description
lowergateIn input

from network layer

lowerControlIn input
lowergateOut output

to network layer

Source code:

simple BurstApplLayer
    parameters:
	debug : bool, // debug switch
	headerLength: numeric const, // length of the application message header (in bits)
	burstSize: numeric const; // size of the burst
    gates:
	in: lowergateIn, // from network layer
	    lowerControlIn;
	out: lowergateOut; // to network layer
endsimple