AmRxQueue.ned

NED File src/stack/rlc/am/buffer/AmRxQueue.ned

Name Type Description
AmRxQueue simple module

Receive Buffer of RLC AM

Source code

//
//                  Simu5G
//
// Authors: Giovanni Nardini, Giovanni Stea, Antonio Virdis (University of Pisa)
//
// This file is part of a software released under the license included in file
// "license.pdf". Please read LICENSE and README files before using it.
// The above files and the present reference are part of the software itself,
// and cannot be removed from it.
//


package simu5g.stack.rlc.am.buffer;

//
// Receive Buffer of RLC AM
//
simple AmRxQueue
{
    parameters:
        @dynamic(true);
        @display("i=block/segm");
        string amModule = default("^.am");
        string binderModule = default("binder");
        int rxWindowSize = default(200);
        double ackReportInterval @unit(s) = 0.10s;
        double statusReportInterval @unit(s) = 0.20s;
        double timeout @unit(s) = default(1s);            // Timeout for RX Buffer
}

//
// Entities for the RLC module
//