NED File src/ctc/RCIncoming.ned

Name Type Description
RCIncoming simple module

Module for the conformance checks of incoming rate-constrained traffic.

Source code:

package ttethernet.ctc;

//
// Module for the conformance checks of incoming rate-constrained traffic.
//
// The traffic is checked for conformance with the bag.
//
// @warning Only the bag parameter is used!
//
// @see Incoming,
//
// @author Till Steinbach
simple RCIncoming extends Incoming
{
    parameters:
        @display("i=,orange");
        //RCIncoming is implemented by the RCIncoming C++ Class
        @class(RCIncoming);
        // Bandwidth allocation gap in number of ticks (Changes to this parameter will get active for future frames only)
        int bag = default(0);
        //Not used
        int jitter = default(0);
}