FragmenterBase.ned

NED File src/inet/protocolelement/fragmentation/base/FragmenterBase.ned

Name Type Description
FragmenterBase compound module (no description)

Source code

//
// Copyright (C) 2020 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//


package inet.protocolelement.fragmentation.base;

import inet.protocolelement.fragmentation.contract.IFragmenterPolicy;
import inet.queueing.base.PacketPusherBase;

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");
        }
}