MecResponseApp.ned

NED File src/apps/mecRequestResponseApp/MecResponseApp.ned

Name Type Description
MecResponseApp simple module

This module provides a simplified model of an edge application, intended to run on an edge host associated with a base station. It receives requests from a User Equipment (UE) application, such as a MecRequestApp, and sends a response after a processing time. The processing time is calculated based on the size of the request packet and a value representing the computational capabilities of the node hosting this application module. If the UE that sends the request is not served by the base station associated with this application, then an additional delay is applied to the response, which represents the time required to traverse the cellular core network.

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.apps.mecRequestResponseApp;

import inet.applications.contract.IApp;

//
// This module provides a simplified model of an edge application, intended
// to run on an edge host associated with a base station. It receives requests from a
// User Equipment (UE) application, such as a ~MecRequestApp, and sends a response after
// a processing time. The processing time is calculated based on the size of the request packet
// and a value representing the computational capabilities of the node hosting this
// application module.
// If the UE that sends the request is not served by the base station associated with this
// application, then an additional delay is applied to the response, which represents
// the time required to traverse the cellular core network.
//
simple MecResponseApp like IApp
{
    parameters:
        @display("i=block/app;is=s");

        int localPort = default(5000);
        double coreNetworkDelay @unit("s") = default(0.1s);
        int tos = default(-1); // if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value

        @signal[recvRequestSno];
        @statistic[recvRequestSno](title="Received Sequence number"; unit=""; source="recvRequestSno"; record=vector);

    gates:
        output socketOut;
        input socketIn;
}