NrPacketFlowObserverGnb.ned

NED File src/simu5g/stack/packetFlowObserver/NrPacketFlowObserverGnb.ned

Name Type Description
NrPacketFlowObserverGnb simple module

This module is responsible for keeping tracking the flow of SDUs in the stack, and compute statistics from them. It is passive observer of the packet flow. Its main user is MEC services.

Source code

//
//                  Simu5G
//
// Copyright (C) 2019-2021 Giovanni Nardini, Giovanni Stea, Antonio Virdis et al. (University of Pisa)
// Copyright (C) 2022-2026 Giovanni Nardini, Giovanni Stea et al. (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.packetFlowObserver;

//
// This module is responsible for keeping tracking the flow of SDUs in the stack,
// and compute statistics from them. It is passive observer of the packet flow.
// Its main user is MEC services.
//
simple NrPacketFlowObserverGnb like IPacketFlowObserver
{
    @class("PacketFlowObserverEnb");
    string macModule = default("^.mac");
    string pdcpModule = default("^");
    string rlcModule = default("^");
    bool isNrObserver = default(false);
    string pfmType = default("NrPacketFlowObserverGnb");
}