FragmenterBase

Package: inet.protocolelement.fragmentation.base

FragmenterBase

compound module

(no description)

fragmenterPolicy : like IFragmenterPolicy

Source:
fragmenterPolicy: <> like IFragmenterPolicy if typename != "" {
    parameters:
        @display("p=100,100");
}

Usage diagram

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Known subclasses

Name Type Description
FragmentNumberHeaderBasedFragmenter compound module (no description)
FragmentTagBasedFragmenter compound module (no description)

Extends

Name Type Description
PacketPusherBase simple module

This is a base module for various packet pusher modules.

Parameters

Name Type Default value Description
displayStringTextFormat string "processed %p pk (%l)"

determines the text that is written on top of the submodule

deleteSelf bool false
fragmenterPolicyClass string ""
fragmenterPolicyModule string ".fragmenterPolicy"

Properties

Name Value Description
display i=block/fork
class FragmenterBase

Gates

Name Direction Size Description
in input
out output

Source code

module FragmenterBase extends PacketPusherBase
{
    parameters:
        bool deleteSelf = default(false);
        string fragmenterPolicyClass = default("");
        string fragmenterPolicyModule = default(".fragmenterPolicy");
        @display("i=block/fork");
        @class(FragmenterBase);
    submodules:
        fragmenterPolicy: <> like IFragmenterPolicy if typename != "" {
            parameters:
                @display("p=100,100");
        }
}
File: src/inet/protocolelement/fragmentation/base/FragmenterBase.ned